Skip to content

Commit

Permalink
fix windows executable names
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Jul 27, 2024
1 parent 4f62119 commit a64a5a2
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions NFsim_v1.11/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,14 @@ enable_testing()
add_executable(${exe_target} ${SRC_FILES})
target_link_libraries(${exe_target} vcommons vcellmessaging)

# if windows then command is py test1.py, else it is test1.py
set(test_command test1.py)
set(test1_command test1.py)
set(test_nfsim_exe ${CMAKE_BINARY_DIR}/bin/${exe_target})
if (WIN32)
set(test_command py test1.py)
set(test1_command py test1.py)
set(test_nfsim_exe ${CMAKE_BINARY_DIR}/bin/${exe_target}.exe)
endif (WIN32)
add_test(NAME ${exe_target}_test1 COMMAND ${test_command} ${CMAKE_BINARY_DIR}/bin/${exe_target} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/tests/test1)
add_test(NAME ${exe_target}_test2 COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/tests/test1/test2.sh ${CMAKE_BINARY_DIR}/bin/${exe_target} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/tests/test1)
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)

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

0 comments on commit a64a5a2

Please sign in to comment.