summaryrefslogtreecommitdiffstats
path: root/Tests/Complex/Executable/complex.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Complex/Executable/complex.cxx')
-rw-r--r--Tests/Complex/Executable/complex.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Complex/Executable/complex.cxx b/Tests/Complex/Executable/complex.cxx
index e07845c..81ef44e 100644
--- a/Tests/Complex/Executable/complex.cxx
+++ b/Tests/Complex/Executable/complex.cxx
@@ -325,9 +325,9 @@ int main()
cmPassed("run Single Character executable A returned 10 as expected.");
}
- lib += cmDynamicLoader::LibPrefix();
+ lib += CMAKE_SHARED_MODULE_PREFIX;
lib += "CMakeTestModule";
- lib += cmDynamicLoader::LibExtension();
+ lib += CMAKE_SHARED_MODULE_SUFFIX;
cmsys::DynamicLoader::LibraryHandle handle = cmDynamicLoader::OpenLibrary(lib.c_str());
if(!handle)
{