We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 907e606 commit 35d054cCopy full SHA for 35d054c
Core/Libraries/Source/DataChunk/CMakeLists.txt
@@ -16,7 +16,10 @@ target_link_libraries(core_datachunk PUBLIC
16
core_utility
17
)
18
19
-target_compile_features(core_datachunk PUBLIC cxx_std_98)
+# VC6 doesn't support target_compile_features
20
+if(NOT IS_VS6_BUILD)
21
+ target_compile_features(core_datachunk PUBLIC cxx_std_98)
22
+endif()
23
24
if(WIN32 OR "${CMAKE_SYSTEM}" MATCHES "Windows")
25
target_compile_definitions(core_datachunk PRIVATE _CRT_SECURE_NO_WARNINGS)
0 commit comments