CMakeLists.txt 954 B

1234567891011121314151617181920212223
  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 OR "${CMAKE_C_COMPILER_ID}" MATCHES "^(Intel)$")
  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_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS EXAMPLE_DLL_2)
  11. set(example_dll_2 example_dll_2)
  12. endif()
  13. # Test .def file source recognition for EXEs.
  14. add_executable(example_exe example_exe.c example_exe.def)
  15. set_property(TARGET example_exe PROPERTY ENABLE_EXPORTS 1)
  16. target_link_libraries(example_exe example_dll ${example_dll_2})
  17. # Test linking to the executable.
  18. add_library(example_mod_1 MODULE example_mod_1.c)
  19. target_link_libraries(example_mod_1 example_exe example_dll ${example_dll_2})