We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e021b8 commit effa3f2Copy full SHA for effa3f2
1 file changed
src/iceberg/test/CMakeLists.txt
@@ -49,6 +49,10 @@ function(add_iceberg_test test_name)
49
target_link_libraries(${test_name} PRIVATE iceberg_static GTest::gmock_main)
50
endif()
51
52
+ if(MSVC_TOOLCHAIN)
53
+ target_compile_options(${test_name} PRIVATE /bigobj)
54
+ endif()
55
+
56
add_test(NAME ${test_name} COMMAND ${test_name})
57
endfunction()
58
@@ -186,6 +190,9 @@ if(ICEBERG_BUILD_REST)
186
190
target_include_directories(${test_name} PRIVATE "${CMAKE_BINARY_DIR}/iceberg/test/")
187
191
target_sources(${test_name} PRIVATE ${ARG_SOURCES})
188
192
target_link_libraries(${test_name} PRIVATE GTest::gmock_main iceberg_rest_static)
193
194
195
189
196
197
198
0 commit comments