Skip to content

Commit 464fb7e

Browse files
committed
cmake
1 parent f46b04d commit 464fb7e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

CMakeLists.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_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()
2121
file(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)

0 commit comments

Comments
 (0)