CMakeLists.txt 344 B

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