CMake: Put the run target in the targets section
This commit is contained in:
+6
-6
@@ -3,12 +3,6 @@
|
|||||||
|
|
||||||
# Set project name
|
# Set project name
|
||||||
set(PROJECT "stowage")
|
set(PROJECT "stowage")
|
||||||
# ------------------------------------------
|
|
||||||
|
|
||||||
# Add 'make run' target
|
|
||||||
add_custom_target(run
|
|
||||||
COMMAND ${PROJECT}
|
|
||||||
)
|
|
||||||
|
|
||||||
# ------------------------------------------
|
# ------------------------------------------
|
||||||
|
|
||||||
@@ -77,6 +71,12 @@ list(REMOVE_ITEM TEST_SOURCES "${CMAKE_SOURCE_DIR}/src/main.cpp")
|
|||||||
add_executable(${PROJECT} ${PROJECT_SOURCES})
|
add_executable(${PROJECT} ${PROJECT_SOURCES})
|
||||||
target_link_libraries(${PROJECT})
|
target_link_libraries(${PROJECT})
|
||||||
|
|
||||||
|
# ------------------------------------------
|
||||||
|
# Execute target
|
||||||
|
|
||||||
|
add_custom_target(run
|
||||||
|
COMMAND ${PROJECT})
|
||||||
|
add_dependencies(run ${PROJECT})
|
||||||
|
|
||||||
# ------------------------------------------
|
# ------------------------------------------
|
||||||
# Unit test target
|
# Unit test target
|
||||||
|
|||||||
Reference in New Issue
Block a user