Skip to content

Commit

Permalink
use relative path on test2.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Jul 27, 2024
1 parent 6ecebd1 commit 7cb7b71
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion NFsim_v1.11/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,15 @@ add_executable(${exe_target} ${SRC_FILES})
target_link_libraries(${exe_target} vcommons vcellmessaging)

set(test1_command test1.py)
set(test2_command ${CMAKE_CURRENT_SOURCE_DIR}/tests/test1/test2.sh)
set(test_nfsim_exe ${CMAKE_BINARY_DIR}/bin/${exe_target})
if (WIN32)
set(test1_command py test1.py)
set(test_nfsim_exe ${CMAKE_BINARY_DIR}/bin/${exe_target}.exe)
file(TO_CMAKE_PATH ${test2_command} test2_command)
endif (WIN32)
add_test(NAME ${exe_target}_test1 COMMAND ${test1_command} ${test_nfsim_exe} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/tests/test1)
add_test(NAME ${exe_target}_test2 COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/tests/test1/test2.sh ${test_nfsim_exe} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/tests/test1)
add_test(NAME ${exe_target}_test2 COMMAND ${test2_command} ${test_nfsim_exe} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/tests/test1)

install(TARGETS ${exe_target} RUNTIME DESTINATION ${OPTION_EXE_DIRECTORY})

0 comments on commit 7cb7b71

Please sign in to comment.