CMakeLists.txt 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. cmake_minimum_required (VERSION 2.7.20090711)
  2. project(Export C CXX)
  3. # Pretend that RelWithDebInfo should link to debug libraries to test
  4. # the DEBUG_CONFIGURATIONS property.
  5. set_property(GLOBAL PROPERTY DEBUG_CONFIGURATIONS Debug RelWithDebInfo)
  6. add_library(testExe1lib STATIC testExe1lib.c) # not exported
  7. add_executable(testExe1 testExe1.c)
  8. target_link_libraries(testExe1 testExe1lib)
  9. set_property(TARGET testExe1 PROPERTY VERSION 4)
  10. add_library(testExe2libImp SHARED testExe2libImp.c)
  11. set_property(TARGET testExe2libImp PROPERTY LIBRARY_OUTPUT_DIRECTORY impl)
  12. add_library(testExe2lib SHARED testExe2lib.c)
  13. target_link_libraries(testExe2lib testExe2libImp)
  14. set_property(TARGET testExe2lib PROPERTY LINK_INTERFACE_LIBRARIES "")
  15. add_executable(testExe2 testExe2.c)
  16. set_property(TARGET testExe2 PROPERTY ENABLE_EXPORTS 1)
  17. set_property(TARGET testExe2 PROPERTY LINK_INTERFACE_LIBRARIES testExe2lib)
  18. add_library(testLib1 STATIC testLib1.c)
  19. add_library(testLib2 STATIC testLib2.c)
  20. target_link_libraries(testLib2 testLib1)
  21. # Test library with empty link interface. Link it to an implementation
  22. # dependency that itself links to dependencies publicly.
  23. add_library(testLib3ImpDep SHARED testLib3ImpDep.c)
  24. set_property(TARGET testLib3ImpDep PROPERTY LIBRARY_OUTPUT_DIRECTORY impl/dep)
  25. add_library(testLib3Imp SHARED testLib3Imp.c)
  26. set_property(TARGET testLib3Imp PROPERTY LIBRARY_OUTPUT_DIRECTORY impl)
  27. target_link_libraries(testLib3Imp testLib3ImpDep)
  28. add_library(testLib3 SHARED testLib3.c)
  29. target_link_libraries(testLib3 testLib3Imp)
  30. set_property(TARGET testLib3 PROPERTY LINK_INTERFACE_LIBRARIES "")
  31. set_property(TARGET testLib3 PROPERTY VERSION 1.2)
  32. set_property(TARGET testLib3 PROPERTY SOVERSION 3)
  33. # Test <ARCHIVE|LIBRARY|RUNTIME>_OUTPUT_NAME[_<CONFIG>] properties.
  34. set_property(TARGET testLib3 PROPERTY RUNTIME_OUTPUT_NAME_DEBUG testLib3dll-d)
  35. set_property(TARGET testLib3 PROPERTY RUNTIME_OUTPUT_NAME_RELEASE testLib3dll-r)
  36. set_property(TARGET testLib3 PROPERTY RUNTIME_OUTPUT_NAME testLib3dll)
  37. set_property(TARGET testLib3 PROPERTY LIBRARY_OUTPUT_NAME_DEBUG testLib3lib-d)
  38. set_property(TARGET testLib3 PROPERTY LIBRARY_OUTPUT_NAME_RELEASE testLib3lib-r)
  39. set_property(TARGET testLib3 PROPERTY LIBRARY_OUTPUT_NAME testLib3lib)
  40. set_property(TARGET testLib3 PROPERTY ARCHIVE_OUTPUT_NAME testLib3import)
  41. add_library(testLib4 SHARED testLib4.c)
  42. set_property(TARGET testLib4 PROPERTY FRAMEWORK 1)
  43. add_library(testLib5 SHARED testLib5.c)
  44. add_library(testLib6 STATIC testLib6.cxx testLib6c.c)
  45. # Work-around: Visual Studio 6 does not support per-target object files.
  46. set(VS6)
  47. if("${CMAKE_GENERATOR}" MATCHES "Visual Studio 6")
  48. set(VS6 1)
  49. endif()
  50. # Test using the target_link_libraries command to set the
  51. # LINK_INTERFACE_LIBRARIES* properties. We construct two libraries
  52. # providing the same two symbols. In each library one of the symbols
  53. # will work and the other one will fail to link. The import part of
  54. # this test will try to use the symbol corresponding to the
  55. # configuration in which it is built. If the proper library is not
  56. # used via the link interface the import test will fail to link.
  57. add_library(testLib4lib STATIC testLib4lib.c)
  58. add_library(testLib4libdbg STATIC testLib4libopt.c testLib4libdbg${VS6}.c)
  59. add_library(testLib4libopt STATIC testLib4libdbg.c testLib4libopt${VS6}.c)
  60. set_property(TARGET testLib4libdbg PROPERTY COMPILE_DEFINITIONS LIB_DBG)
  61. set_property(TARGET testLib4libopt PROPERTY COMPILE_DEFINITIONS LIB_OPT)
  62. target_link_libraries(testLib4
  63. LINK_INTERFACE_LIBRARIES
  64. testLib4lib debug testLib4libdbg optimized testLib4libopt
  65. )
  66. add_executable(testExe3 testExe3.c)
  67. set_property(TARGET testExe3 PROPERTY MACOSX_BUNDLE 1)
  68. # Test cyclic dependencies.
  69. add_library(testLibCycleA STATIC
  70. testLibCycleA1.c testLibCycleA2.c testLibCycleA3.c)
  71. add_library(testLibCycleB STATIC
  72. testLibCycleB1.c testLibCycleB2.c testLibCycleB3.c)
  73. target_link_libraries(testLibCycleA testLibCycleB)
  74. target_link_libraries(testLibCycleB testLibCycleA)
  75. set_property(TARGET testLibCycleA PROPERTY LINK_INTERFACE_MULTIPLICITY 3)
  76. # Test exporting dependent libraries into different exports
  77. add_library(testLibRequired testLibRequired.c)
  78. add_library(testLibDepends testLibDepends.c)
  79. target_link_libraries(testLibDepends testLibRequired)
  80. install(TARGETS testLibRequired EXPORT RequiredExp DESTINATION lib )
  81. install(EXPORT RequiredExp NAMESPACE Req:: FILE testLibRequiredConfig.cmake DESTINATION lib/cmake/testLibRequired)
  82. install(TARGETS testLibDepends EXPORT DependsExp DESTINATION lib )
  83. install(EXPORT DependsExp FILE testLibDependsConfig.cmake DESTINATION lib/cmake/testLibDepends)
  84. # Install and export from install tree.
  85. install(
  86. TARGETS
  87. testExe1 testLib1 testLib2 testExe2 testLib3 testLib4 testExe3
  88. testExe2lib testLib4lib testLib4libdbg testLib4libopt
  89. testLib6
  90. testLibCycleA testLibCycleB
  91. EXPORT exp
  92. RUNTIME DESTINATION bin
  93. LIBRARY DESTINATION lib NAMELINK_SKIP
  94. ARCHIVE DESTINATION lib
  95. FRAMEWORK DESTINATION Frameworks
  96. BUNDLE DESTINATION Applications
  97. )
  98. install(
  99. TARGETS
  100. testExe2libImp testLib3Imp
  101. EXPORT exp
  102. RUNTIME DESTINATION bin
  103. LIBRARY DESTINATION lib/impl
  104. ARCHIVE DESTINATION lib/impl
  105. )
  106. install(
  107. TARGETS
  108. testLib3ImpDep
  109. EXPORT exp
  110. RUNTIME DESTINATION bin
  111. LIBRARY DESTINATION lib/impl/dep
  112. ARCHIVE DESTINATION lib/impl/dep
  113. )
  114. install(
  115. TARGETS testLib5
  116. EXPORT exp
  117. # Leave out RUNTIME DESTINATION to test implib-only export.
  118. LIBRARY DESTINATION lib
  119. ARCHIVE DESTINATION lib
  120. )
  121. install(EXPORT exp NAMESPACE exp_ DESTINATION lib/exp)
  122. # Install testLib5.dll outside the export.
  123. if(WIN32)
  124. install(TARGETS testLib5 RUNTIME DESTINATION bin)
  125. endif()
  126. # Export from build tree.
  127. export(TARGETS testExe1 testLib1 testLib2 testLib3
  128. testExe2libImp testLib3Imp testLib3ImpDep
  129. NAMESPACE bld_
  130. FILE ExportBuildTree.cmake
  131. )
  132. export(TARGETS testExe2 testLib4 testLib5 testLib6 testExe3 testExe2lib
  133. testLib4lib testLib4libdbg testLib4libopt
  134. testLibCycleA testLibCycleB
  135. NAMESPACE bld_
  136. APPEND FILE ExportBuildTree.cmake
  137. )