CMakeLists.txt 830 B

12345678910111213141516171819202122
  1. cmake_minimum_required(VERSION 2.6)
  2. project(ModuleDefinition C)
  3. # Test .def file source recognition for DLLs.
  4. add_library(example_dll SHARED example_dll.c example_dll.def)
  5. # Test /DEF:<file> flag recognition for VS.
  6. if(MSVC)
  7. add_library(example_dll_2 SHARED example_dll_2.c)
  8. set_property(TARGET example_dll_2 PROPERTY LINK_FLAGS
  9. /DEF:"${ModuleDefinition_SOURCE_DIR}/example_dll_2.def")
  10. set(example_dll_2 example_dll_2)
  11. endif()
  12. # Test .def file source recognition for EXEs.
  13. add_executable(example_exe example_exe.c example_exe.def)
  14. set_property(TARGET example_exe PROPERTY ENABLE_EXPORTS 1)
  15. target_link_libraries(example_exe example_dll ${example_dll_2})
  16. # Test linking to the executable.
  17. add_library(example_mod_1 MODULE example_mod_1.c)
  18. target_link_libraries(example_mod_1 example_exe example_dll ${example_dll_2})