From b39b6c8ce6108d69451abc8dbb0b2687c1023ed9 Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Fri, 9 Oct 2020 21:18:57 -0400 Subject: [PATCH] Unrelated: Add back pretty-print tests --- test/CMakeLists.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 43c0cdc3ee..a61bdc2f00 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -18,15 +18,16 @@ add_executable(goalc-test test_emitter_integer_math.cpp test_common_util.cpp test_deftype.cpp - ${GOALC_TEST_FRAMEWORK_SOURCES} - ${GOALC_TEST_CASES}) + test_pretty_print.cpp + ${GOALC_TEST_FRAMEWORK_SOURCES} + ${GOALC_TEST_CASES}) enable_testing() IF (WIN32) - set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) + set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) - # TODO - split out these declarations for platform specific includes + # TODO - split out these declarations for platform specific includes target_link_libraries(goalc-test cross_sockets goos common_util listener runtime compiler type_system gtest mman) ELSE() target_link_libraries(goalc-test cross_sockets goos common_util listener runtime compiler type_system gtest)