File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.16)
2
2
3
3
# set the project name
4
- project (arduino_stk )
4
+ project (arduino-stk )
5
5
6
6
# lots of warnings and all warnings as errors
7
7
# add_compile_options(-Wall -Wextra )
@@ -21,11 +21,11 @@ endif()
21
21
file (GLOB_RECURSE SRC_LIST_CPP CONFIGURE_DEPENDS "${PROJECT_SOURCE_DIR} /src/*.cpp" )
22
22
23
23
# define libraries
24
- add_library (arduino_stk ${SRC_LIST_CPP} )
24
+ add_library (arduino-stk ${SRC_LIST_CPP} )
25
25
26
- target_compile_definitions (arduino_stk PUBLIC -DIS_DESKTOP )
26
+ target_compile_definitions (arduino-stk PUBLIC -DIS_DESKTOP )
27
27
28
28
# 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 )
30
30
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