Files
jak-project/test/CMakeLists.txt
T
2020-08-26 22:23:16 -04:00

19 lines
540 B
CMake

add_executable(goalc-test
test_main.cpp
test_test.cpp
test_reader.cpp
test_goos.cpp
test_listener_deci2.cpp
test_kernel.cpp
test_CodeTester.cpp
all_jak1_symbols.cpp
test_type_system.cpp)
IF (WIN32)
# TODO - implement windows listener
message("Windows Listener Not Implemented!")
target_link_libraries(goalc-test goos util runtime emitter type_system gtest)
ELSE()
target_link_libraries(goalc-test goos util listener runtime emitter type_system gtest)
ENDIF()