Commit 67e196ea authored by Victor Zverovich's avatar Victor Zverovich

Make test libraries static

parent fdecd5b4
set(TEST_MAIN_SRC test-main.cc gtest-extra.cc gtest-extra.h util.cc) set(TEST_MAIN_SRC test-main.cc gtest-extra.cc gtest-extra.h util.cc)
add_library(test-main ${TEST_MAIN_SRC}) add_library(test-main STATIC ${TEST_MAIN_SRC})
target_link_libraries(test-main gmock) target_link_libraries(test-main gmock)
# Adds a test. # Adds a test.
...@@ -67,7 +67,7 @@ target_link_libraries(header-only-test gmock) ...@@ -67,7 +67,7 @@ target_link_libraries(header-only-test gmock)
# Test that the library can be compiled with exceptions disabled. # Test that the library can be compiled with exceptions disabled.
check_cxx_compiler_flag(-fno-exceptions HAVE_FNO_EXCEPTIONS_FLAG) check_cxx_compiler_flag(-fno-exceptions HAVE_FNO_EXCEPTIONS_FLAG)
if (HAVE_FNO_EXCEPTIONS_FLAG) if (HAVE_FNO_EXCEPTIONS_FLAG)
add_library(noexception-test ../format.cc) add_library(noexception-test STATIC ../format.cc)
set_target_properties(noexception-test set_target_properties(noexception-test
PROPERTIES COMPILE_FLAGS -fno-exceptions) PROPERTIES COMPILE_FLAGS -fno-exceptions)
endif () endif ()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment