summaryrefslogtreecommitdiffstats
path: root/Tests/ComplexOneConfig/Executable
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-03-16 22:20:09 (GMT)
committerBrad King <brad.king@kitware.com>2006-03-16 22:20:09 (GMT)
commitf430ad0ea25cd55bbc6be1d1627da03df260630d (patch)
treebb73e54655b0c18bedb9af5b477e780a940099f8 /Tests/ComplexOneConfig/Executable
parent1d38a3e09e071e16c38d46a7bd67e1730bbee7ab (diff)
downloadCMake-f430ad0ea25cd55bbc6be1d1627da03df260630d.zip
CMake-f430ad0ea25cd55bbc6be1d1627da03df260630d.tar.gz
CMake-f430ad0ea25cd55bbc6be1d1627da03df260630d.tar.bz2
BUG: Removed compiled-in CMAKE_SHARED_MODULE_PREFIX and CMAKE_SHARED_MODULE_SUFFIX for loaded commands in favor of using the settings from the platform files.
Diffstat (limited to 'Tests/ComplexOneConfig/Executable')
-rw-r--r--Tests/ComplexOneConfig/Executable/complex.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/ComplexOneConfig/Executable/complex.cxx b/Tests/ComplexOneConfig/Executable/complex.cxx
index e07845c..81ef44e 100644
--- a/Tests/ComplexOneConfig/Executable/complex.cxx
+++ b/Tests/ComplexOneConfig/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)
{