diff options
author | Brad King <brad.king@kitware.com> | 2012-04-02 14:40:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-04-02 14:54:25 (GMT) |
commit | 89987c21027af53a97db07babf91d718e52676c3 (patch) | |
tree | d3f731c8acd37ca6c6df8b096acabe227a5f78e8 /Tests/ModuleDefinition/example_exe.c | |
parent | e8584401852a871b6cda57e570b7bb04b6dacf74 (diff) | |
download | CMake-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.c | 2 |
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 |