File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 48
48
- name : run test (Linux)
49
49
if : matrix.os == 'ubuntu-latest'
50
50
working-directory : ${{github.workspace}}/build
51
- run : ./bin /behaviortree_cpp_v3_test
51
+ run : ./tests /behaviortree_cpp_v3_test
52
52
Original file line number Diff line number Diff line change @@ -252,16 +252,12 @@ else()
252
252
set ( BEHAVIOR_TREE_INC_DESTINATION include )
253
253
set ( BEHAVIOR_TREE_BIN_DESTINATION bin )
254
254
255
- set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR} /${BEHAVIOR_TREE_BIN_DESTINATION} " )
256
- set (CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR} /${BEHAVIOR_TREE_LIB_DESTINATION} " )
257
- set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR} /${BEHAVIOR_TREE_BIN_DESTINATION} " )
258
255
endif ()
259
256
260
257
message ( STATUS "BEHAVIOR_TREE_LIB_DESTINATION: ${BEHAVIOR_TREE_LIB_DESTINATION} " )
261
258
message ( STATUS "BEHAVIOR_TREE_BIN_DESTINATION: ${BEHAVIOR_TREE_BIN_DESTINATION} " )
262
- message ( STATUS "CMAKE_RUNTIME_OUTPUT_DIRECTORY: ${CMAKE_RUNTIME_OUTPUT_DIRECTORY} " )
263
- message ( STATUS "CMAKE_LIBRARY_OUTPUT_DIRECTORY: ${CMAKE_LIBRARY_OUTPUT_DIRECTORY} " )
264
- message ( STATUS "CMAKE_ARCHIVE_OUTPUT_DIRECTORY: ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY} " )
259
+ message ( STATUS "BUILD_UNIT_TESTS: ${BUILD_UNIT_TESTS} " )
260
+
265
261
266
262
######################################################
267
263
# Samples
Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ elseif(BUILD_UNIT_TESTS)
62
62
add_custom_command (TARGET ${BEHAVIOR_TREE_LIBRARY} _test POST_BUILD
63
63
COMMAND ${CMAKE_COMMAND} -E copy_directory
64
64
${CMAKE_SOURCE_DIR} /tests/trees
65
- ${CMAKE_RUNTIME_OUTPUT_DIRECTORY} / trees )
65
+ trees )
66
66
67
- add_test (BehaviorTreeCoreTest ${CMAKE_RUNTIME_OUTPUT_DIRECTORY} /${ BEHAVIOR_TREE_LIBRARY}_test )
67
+ add_test (BehaviorTreeCoreTest ${BEHAVIOR_TREE_LIBRARY} _test )
68
68
69
69
endif ()
You can’t perform that action at this time.
0 commit comments