You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.5 KiB
59 lines
1.5 KiB
include(GoogleTest) |
|
|
|
add_library(libdevilutionx_so SHARED) |
|
set_target_properties(libdevilutionx_so PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) |
|
target_link_libraries(libdevilutionx_so PUBLIC libdevilutionx) |
|
target_include_directories(libdevilutionx_so INTERFACE "${PROJECT_SOURCE_DIR}/Source") |
|
set_target_properties(libdevilutionx_so PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON) |
|
|
|
add_library(test_main STATIC main.cpp) |
|
target_link_libraries(test_main PUBLIC libdevilutionx_so GTest::gtest GTest::gmock) |
|
|
|
set(tests |
|
animationinfo_test |
|
appfat_test |
|
automap_test |
|
codec_test |
|
cursor_test |
|
data_file_test |
|
dead_test |
|
diablo_test |
|
drlg_common_test |
|
drlg_l1_test |
|
drlg_l2_test |
|
drlg_l3_test |
|
drlg_l4_test |
|
effects_test |
|
file_util_test |
|
format_int_test |
|
inv_test |
|
lighting_test |
|
math_test |
|
missiles_test |
|
pack_test |
|
path_test |
|
player_test |
|
quests_test |
|
random_test |
|
rectangle_test |
|
scrollrt_test |
|
stores_test |
|
str_cat_test |
|
timedemo_test |
|
utf8_test |
|
writehero_test |
|
) |
|
|
|
include(Fixtures.cmake) |
|
|
|
foreach(test_target ${tests}) |
|
add_executable(${test_target} "${test_target}.cpp") |
|
gtest_discover_tests(${test_target}) |
|
target_link_libraries(${test_target} PRIVATE test_main) |
|
set_target_properties(${test_target} PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) |
|
if(GPERF) |
|
target_link_libraries(${test_target} PUBLIC ${GPERFTOOLS_LIBRARIES}) |
|
endif() |
|
endforeach() |
|
|
|
target_include_directories(writehero_test PRIVATE ../3rdParty/PicoSHA2)
|
|
|