summaryrefslogtreecommitdiffstats
path: root/Tests/ExportImport/Import
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-01-30 22:26:09 (GMT)
committerBrad King <brad.king@kitware.com>2008-01-30 22:26:09 (GMT)
commit109b5fc7a22b1f2e1711a7fcafff08c11f1bdb49 (patch)
treeef9f65cd1985267449764979424bacf497667498 /Tests/ExportImport/Import
parent7902bc06aae07a9d4cde81ab41c3c86694d80a9b (diff)
downloadCMake-109b5fc7a22b1f2e1711a7fcafff08c11f1bdb49.zip
CMake-109b5fc7a22b1f2e1711a7fcafff08c11f1bdb49.tar.gz
CMake-109b5fc7a22b1f2e1711a7fcafff08c11f1bdb49.tar.bz2
ENH: Updated ExportImport test to try LINK_INTERFACE_LIBRARIES.
Diffstat (limited to 'Tests/ExportImport/Import')
-rw-r--r--Tests/ExportImport/Import/imp_mod1.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/ExportImport/Import/imp_mod1.c b/Tests/ExportImport/Import/imp_mod1.c
index d276631..579d949 100644
--- a/Tests/ExportImport/Import/imp_mod1.c
+++ b/Tests/ExportImport/Import/imp_mod1.c
@@ -5,8 +5,9 @@
#endif
testExe2_IMPORT int testExe2Func(void);
+testExe2_IMPORT int testExe2lib(void);
int imp_mod1()
{
- return testExe2Func();
+ return testExe2Func() + testExe2lib();
}