1
0

CMakeLists.txt 286 B

12345678910111213
  1. set(CMAKE_INCLUDE_CURRENT_DIR ON)
  2. include(GenerateExportHeader)
  3. add_compiler_export_flags()
  4. # Show that the export header has no effect on a static library.
  5. add_library(libstatic STATIC libstatic.cpp)
  6. generate_export_header(libstatic)
  7. export(TARGETS libstatic FILE Targets.cmake)