CMakeLists.txt 178 B

12345
  1. add_library(autoexport2 SHARED sub.cxx)
  2. if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
  3. # Try msvc "big" object format.
  4. target_compile_options(autoexport2 PRIVATE /bigobj)
  5. endif()