[Cmake-commits] [cmake-commits] king committed CMakeLists.txt 1.11 1.12 testLib4lib.c NONE 1.1 testLib4libdbg.c NONE 1.1 testLib4libopt.c NONE 1.1

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Aug 11 16:23:12 EDT 2008


Update of /cvsroot/CMake/CMake/Tests/ExportImport/Export
In directory public:/mounts/ram/cvs-serv3016/Tests/ExportImport/Export

Modified Files:
	CMakeLists.txt 
Added Files:
	testLib4lib.c testLib4libdbg.c testLib4libopt.c 
Log Message:
ENH: Test target_link_libraries INTERFACE option


--- NEW FILE: testLib4lib.c ---
int testLib4lib(void)
{
  return 0;
}

Index: CMakeLists.txt
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/ExportImport/Export/CMakeLists.txt,v
retrieving revision 1.11
retrieving revision 1.12
diff -C 2 -d -r1.11 -r1.12
*** CMakeLists.txt	25 Mar 2008 15:26:51 -0000	1.11
--- CMakeLists.txt	11 Aug 2008 20:23:10 -0000	1.12
***************
*** 36,39 ****
--- 36,55 ----
  set_property(TARGET testLib4 PROPERTY FRAMEWORK 1)
  
+ # Test using the target_link_libraries command to set the
+ # LINK_INTERFACE_LIBRARIES* properties.  We construct two libraries
+ # providing the same two symbols.  In each library one of the symbols
+ # will work and the other one will fail to link.  The import part of
+ # this test will try to use the symbol corresponding to the
+ # configuration in which it is built.  If the proper library is not
+ # used via the link interface the import test will fail to link.
+ add_library(testLib4lib STATIC testLib4lib.c)
+ add_library(testLib4libdbg STATIC testLib4libopt.c testLib4libdbg.c)
+ add_library(testLib4libopt STATIC testLib4libdbg.c testLib4libopt.c)
+ set_property(TARGET testLib4libdbg PROPERTY COMPILE_DEFINITIONS LIB_DBG)
+ set_property(TARGET testLib4libopt PROPERTY COMPILE_DEFINITIONS LIB_OPT)
+ target_link_libraries(testLib4
+   INTERFACE testLib4lib debug testLib4libdbg optimized testLib4libopt
+   )
+ 
  add_executable(testExe3 testExe3.c)
  set_property(TARGET testExe3 PROPERTY MACOSX_BUNDLE 1)
***************
*** 43,47 ****
    TARGETS
    testExe1 testLib1 testLib2 testExe2 testLib3 testLib4 testExe3
!   testExe2lib
    EXPORT exp
    RUNTIME DESTINATION bin
--- 59,63 ----
    TARGETS
    testExe1 testLib1 testLib2 testExe2 testLib3 testLib4 testExe3
!   testExe2lib testLib4lib testLib4libdbg testLib4libopt
    EXPORT exp
    RUNTIME DESTINATION bin
***************
*** 68,71 ****
--- 84,88 ----
    )
  export(TARGETS testExe2 testLib4 testExe3 testExe2lib
+   testLib4lib testLib4libdbg testLib4libopt
    NAMESPACE bld_
    APPEND FILE ExportBuildTree.cmake

--- NEW FILE: testLib4libopt.c ---
#ifdef LIB_OPT
/* We are building in testLib4libopt.  Provide the correct symbol.  */
int testLib4libopt(void)
{
  return 0;
}
#else
/* We are not building in testLib4libopt.  Poison the symbol.  */
extern int testLib4libopt_noexist(void);
int testLib4libopt(void)
{
  return testLib4libopt_noexist();
}
#endif

--- NEW FILE: testLib4libdbg.c ---
#ifdef LIB_DBG
/* We are building in testLib4libdbg.  Provide the correct symbol.  */
int testLib4libdbg(void)
{
  return 0;
}
#else
/* We are not building in testLib4libdbg.  Poison the symbol.  */
extern int testLib4libdbg_noexist(void);
int testLib4libdbg(void)
{
  return testLib4libdbg_noexist();
}
#endif



More information about the Cmake-commits mailing list