Browse Source

move terminal target to top

python
Jørgen Lien Sellæg 7 years ago committed by Jørgen Sverre Lien Sellæg
parent
commit
ce37b55d0b
  1. 8
      tests/python_bindings/CMakeLists.txt

8
tests/python_bindings/CMakeLists.txt

@ -4,6 +4,10 @@ target_link_libraries(test_suite juci_shared ${PYTHON_LIBRARIES})
include_directories(${CMAKE_SOURCE_DIR}/tests/python_bindings) include_directories(${CMAKE_SOURCE_DIR}/tests/python_bindings)
add_executable(pb_terminal_test Terminal_tests/terminal_test.cc $<TARGET_OBJECTS:test_stubs>)
target_link_libraries(pb_terminal_test test_suite)
add_test(pb_terminal_test pb_terminal_test)
add_executable(pb_python_module_test PythonModule_tests/python_module_test.cc $<TARGET_OBJECTS:test_stubs>) add_executable(pb_python_module_test PythonModule_tests/python_module_test.cc $<TARGET_OBJECTS:test_stubs>)
target_link_libraries(pb_python_module_test test_suite) target_link_libraries(pb_python_module_test test_suite)
add_test(pb_python_module_test pb_python_module_test) add_test(pb_python_module_test pb_python_module_test)
@ -19,7 +23,3 @@ add_test(pb_compile_commands_test pb_compile_commands_test)
add_executable(pb_config_test Config_tests/config_test.cc $<TARGET_OBJECTS:test_stubs>) add_executable(pb_config_test Config_tests/config_test.cc $<TARGET_OBJECTS:test_stubs>)
target_link_libraries(pb_config_test test_suite) target_link_libraries(pb_config_test test_suite)
add_test(pb_config_test pb_config_test) add_test(pb_config_test pb_config_test)
add_executable(pb_terminal_test Terminal_tests/terminal_test.cc $<TARGET_OBJECTS:test_stubs>)
target_link_libraries(pb_terminal_test test_suite)
add_test(pb_terminal_test pb_terminal_test)

Loading…
Cancel
Save