summaryrefslogtreecommitdiffstats
path: root/Tests/ModuleDefinition/example_exe.c
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2012-04-02 14:40:13 (GMT)
committerBrad King <brad.king@kitware.com>2012-04-02 14:54:25 (GMT)
commit89987c21027af53a97db07babf91d718e52676c3 (patch)
treed3f731c8acd37ca6c6df8b096acabe227a5f78e8 /Tests/ModuleDefinition/example_exe.c
parente8584401852a871b6cda57e570b7bb04b6dacf74 (diff)
downloadCMake-89987c21027af53a97db07babf91d718e52676c3.zip
CMake-89987c21027af53a97db07babf91d718e52676c3.tar.gz
CMake-89987c21027af53a97db07babf91d718e52676c3.tar.bz2
Test generated module .def files
Teach the ModuleDefinition test to cover the case that a .def file is generated by a custom command.
Diffstat (limited to 'Tests/ModuleDefinition/example_exe.c')
-rw-r--r--Tests/ModuleDefinition/example_exe.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/ModuleDefinition/example_exe.c b/Tests/ModuleDefinition/example_exe.c
index c521b3a..253ae8b 100644
--- a/Tests/ModuleDefinition/example_exe.c
+++ b/Tests/ModuleDefinition/example_exe.c
@@ -1,4 +1,5 @@
extern int __declspec(dllimport) example_dll_function(void);
+extern int __declspec(dllimport) example_dll_gen_function(void);
#ifdef EXAMPLE_DLL_2
extern int __declspec(dllimport) example_dll_2_function(void);
#endif
@@ -7,6 +8,7 @@ int main(void)
{
return
example_dll_function() +
+ example_dll_gen_function() +
#ifdef EXAMPLE_DLL_2
example_dll_2_function() +
#endif