CMakeLists.txt 1.3 KB

12345678910111213141516171819202122232425262728293031
  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 generated .def file.
  6. add_custom_command(OUTPUT example_dll_gen.def
  7. DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/example_dll_gen.def.in
  8. COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/example_dll_gen.def.in
  9. ${CMAKE_CURRENT_BINARY_DIR}/example_dll_gen.def
  10. )
  11. add_library(example_dll_gen SHARED example_dll_gen.c example_dll_gen.def)
  12. # Test /DEF:<file> flag recognition for VS.
  13. if(MSVC OR CMAKE_C_COMPILER_ID STREQUAL "Intel")
  14. add_library(example_dll_2 SHARED example_dll_2.c)
  15. set_property(TARGET example_dll_2 PROPERTY LINK_FLAGS
  16. /DEF:"${ModuleDefinition_SOURCE_DIR}/example_dll_2.def")
  17. set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS EXAMPLE_DLL_2)
  18. set(example_dll_2 example_dll_2)
  19. endif()
  20. # Test .def file source recognition for EXEs.
  21. add_executable(example_exe example_exe.c example_exe.def)
  22. set_property(TARGET example_exe PROPERTY ENABLE_EXPORTS 1)
  23. target_link_libraries(example_exe example_dll example_dll_gen ${example_dll_2})
  24. # Test linking to the executable.
  25. add_library(example_mod_1 MODULE example_mod_1.c)
  26. target_link_libraries(example_mod_1 example_exe example_dll ${example_dll_2})