[cmake-commits] king committed imp_mod1.c 1.1 1.2

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Jan 30 17:26:11 EST 2008


Update of /cvsroot/CMake/CMake/Tests/ExportImport/Import
In directory public:/mounts/ram/cvs-serv10384/Tests/ExportImport/Import

Modified Files:
	imp_mod1.c 
Log Message:
ENH: Updated ExportImport test to try LINK_INTERFACE_LIBRARIES.


Index: imp_mod1.c
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/ExportImport/Import/imp_mod1.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- imp_mod1.c	28 Jan 2008 13:40:21 -0000	1.1
+++ imp_mod1.c	30 Jan 2008 22:26:09 -0000	1.2
@@ -5,8 +5,9 @@
 #endif
 
 testExe2_IMPORT int testExe2Func(void);
+testExe2_IMPORT int testExe2lib(void);
 
 int imp_mod1()
 {
-  return testExe2Func();
+  return testExe2Func() + testExe2lib();
 }



More information about the Cmake-commits mailing list