diff options
| author | Brad King <brad.king@kitware.com> | 2006-03-16 22:20:09 (GMT) |
|---|---|---|
| committer | Brad King <brad.king@kitware.com> | 2006-03-16 22:20:09 (GMT) |
| commit | f430ad0ea25cd55bbc6be1d1627da03df260630d (patch) | |
| tree | bb73e54655b0c18bedb9af5b477e780a940099f8 /Tests/ComplexRelativePaths/Executable | |
| parent | 1d38a3e09e071e16c38d46a7bd67e1730bbee7ab (diff) | |
| download | CMake-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/ComplexRelativePaths/Executable')
| -rw-r--r-- | Tests/ComplexRelativePaths/Executable/complex.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/ComplexRelativePaths/Executable/complex.cxx b/Tests/ComplexRelativePaths/Executable/complex.cxx index e07845c..81ef44e 100644 --- a/Tests/ComplexRelativePaths/Executable/complex.cxx +++ b/Tests/ComplexRelativePaths/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) { |
