2009-09-30 00:39:43 +04:00
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
project(ModuleDefinition C)
|
|
|
|
|
|
|
|
# Test .def file source recognition for DLLs.
|
|
|
|
add_library(example_dll SHARED example_dll.c example_dll.def)
|
|
|
|
|
2012-04-02 18:40:13 +04:00
|
|
|
# Test generated .def file.
|
|
|
|
add_custom_command(OUTPUT example_dll_gen.def
|
|
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/example_dll_gen.def.in
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/example_dll_gen.def.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/example_dll_gen.def
|
|
|
|
)
|
|
|
|
add_library(example_dll_gen SHARED example_dll_gen.c example_dll_gen.def)
|
|
|
|
|
2009-09-30 00:39:43 +04:00
|
|
|
# Test /DEF:<file> flag recognition for VS.
|
2014-10-14 18:25:32 +04:00
|
|
|
if(MSVC OR CMAKE_C_COMPILER_ID STREQUAL "Intel")
|
2009-09-30 00:39:43 +04:00
|
|
|
add_library(example_dll_2 SHARED example_dll_2.c)
|
|
|
|
set_property(TARGET example_dll_2 PROPERTY LINK_FLAGS
|
|
|
|
/DEF:"${ModuleDefinition_SOURCE_DIR}/example_dll_2.def")
|
2009-10-05 22:39:23 +04:00
|
|
|
set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS EXAMPLE_DLL_2)
|
2009-09-30 00:39:43 +04:00
|
|
|
set(example_dll_2 example_dll_2)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Test .def file source recognition for EXEs.
|
|
|
|
add_executable(example_exe example_exe.c example_exe.def)
|
|
|
|
set_property(TARGET example_exe PROPERTY ENABLE_EXPORTS 1)
|
2012-04-02 18:40:13 +04:00
|
|
|
target_link_libraries(example_exe example_dll example_dll_gen ${example_dll_2})
|
2009-09-30 00:39:43 +04:00
|
|
|
|
|
|
|
# Test linking to the executable.
|
|
|
|
add_library(example_mod_1 MODULE example_mod_1.c)
|
|
|
|
target_link_libraries(example_mod_1 example_exe example_dll ${example_dll_2})
|