File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.16)
22
33# set the project name
4- project (arduino_stk )
4+ project (arduino-stk )
55
66# lots of warnings and all warnings as errors
77# add_compile_options(-Wall -Wextra )
@@ -21,11 +21,11 @@ endif()
2121file (GLOB_RECURSE SRC_LIST_CPP CONFIGURE_DEPENDS "${PROJECT_SOURCE_DIR} /src/*.cpp" )
2222
2323# define libraries
24- add_library (arduino_stk ${SRC_LIST_CPP} )
24+ add_library (arduino-stk ${SRC_LIST_CPP} )
2525
26- target_compile_definitions (arduino_stk PUBLIC -DIS_DESKTOP )
26+ target_compile_definitions (arduino-stk PUBLIC -DIS_DESKTOP )
2727
2828# define location for header files
29- target_include_directories (arduino_stk PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} /src )
29+ target_include_directories (arduino-stk PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} /src )
3030
31- target_link_libraries (arduino_stk arduino_emulator)
31+ target_link_libraries (arduino-stk arduino_emulator)
You can’t perform that action at this time.
0 commit comments