jak-project/test/CMakeLists.txt
2020-09-09 18:41:45 +12:00

27 lines
810 B
CMake

enable_testing()
add_executable(goalc-test
test_main.cpp
test_test.cpp
test_reader.cpp
test_goos.cpp
test_listener_deci2.cpp
test_kernel.cpp
all_jak1_symbols.cpp
test_type_system.cpp
test_CodeTester.cpp
test_emitter_slow.cpp
test_emitter_loads_and_store.cpp
test_emitter_xmm32.cpp
test_emitter_integer_math.cpp
test_common_util.cpp)
IF (WIN32)
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
# TODO - implement windows listener
message("Windows Listener Not Implemented!")
target_link_libraries(goalc-test mman goos util common_util runtime compiler type_system gtest)
ELSE()
target_link_libraries(goalc-test goos util common_util listener runtime compiler type_system gtest)
ENDIF()