aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/unit_tests/CMakeLists.txt
blob: 309333d9b357f4beaaa232477cb4453b451c8005 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
find_package(Boost REQUIRED COMPONENTS filesystem unit_test_framework)

add_executable(unit_tests main.cpp call_stack.cpp dbghelp.cpp error.cpp)
target_link_libraries(unit_tests PRIVATE pdb_repo test_lib)
target_link_libraries(unit_tests PRIVATE
    Boost::disable_autolinking
    Boost::filesystem
    Boost::unit_test_framework)
install(TARGETS unit_tests RUNTIME DESTINATION bin/test)
install_pdbs(TARGETS unit_tests DESTINATION bin/test)

if(MSVC)
    # Set the working directory so that the unit_tests binary can find the
    # test_lib shared library binary.
    add_test(NAME unit_tests COMMAND unit_tests
         --log_level=all
         --no_color_output
         --
         --test_lib_pdb "$<TARGET_PDB_FILE:test_lib>"
         WORKING_DIRECTORY "$<TARGET_FILE_DIR:test_lib>")
endif()