|
@@ -17,7 +17,7 @@ add_executable (accelerometer mma7455.cxx)
|
17
|
17
|
add_executable (lcd st7735.cxx)
|
18
|
18
|
add_executable (max31855-example max31855.cxx)
|
19
|
19
|
add_executable (gy65-example gy65.cxx)
|
20
|
|
-add_executable (stepmotor-example step_motor_example.cxx)
|
|
20
|
+add_executable (stepmotor-example stepmotor.cxx)
|
21
|
21
|
|
22
|
22
|
include_directories (${PROJECT_SOURCE_DIR}/src/hmc5883l)
|
23
|
23
|
include_directories (${PROJECT_SOURCE_DIR}/src/grove)
|
|
@@ -33,7 +33,7 @@ include_directories (${PROJECT_SOURCE_DIR}/src/mma7455)
|
33
|
33
|
include_directories (${PROJECT_SOURCE_DIR}/src/st7735)
|
34
|
34
|
include_directories (${PROJECT_SOURCE_DIR}/src/max31855)
|
35
|
35
|
include_directories (${PROJECT_SOURCE_DIR}/src/gy65)
|
36
|
|
-include_directories (${PROJECT_SOURCE_DIR}/src/step_motor)
|
|
36
|
+include_directories (${PROJECT_SOURCE_DIR}/src/stepmotor)
|
37
|
37
|
|
38
|
38
|
target_link_libraries (compass hmc5883l ${CMAKE_THREAD_LIBS_INIT})
|
39
|
39
|
target_link_libraries (groveled grove ${CMAKE_THREAD_LIBS_INIT})
|
|
@@ -54,4 +54,4 @@ target_link_libraries (accelerometer mma7455 ${CMAKE_THREAD_LIBS_INIT})
|
54
|
54
|
target_link_libraries (lcd st7735 ${CMAKE_THREAD_LIBS_INIT})
|
55
|
55
|
target_link_libraries (max31855-example max31855 ${CMAKE_THREAD_LIBS_INIT})
|
56
|
56
|
target_link_libraries (gy65-example gy65 ${CMAKE_THREAD_LIBS_INIT})
|
57
|
|
-target_link_libraries (stepmotor-example step_motor ${CMAKE_THREAD_LIBS_INIT})
|
|
57
|
+target_link_libraries (stepmotor-example stepmotor ${CMAKE_THREAD_LIBS_INIT})
|