diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-20 17:56:38 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-20 17:56:38 (GMT) |
commit | adbae91cb5a5cb4cd33df273dd977791406ec339 (patch) | |
tree | 6bf114389890b3be2ba49e3c189bb67d5b5f8d6e /Source/FLTKDialog | |
parent | 7715b382fe71932aa36333659b7a2311008d0f06 (diff) | |
download | CMake-adbae91cb5a5cb4cd33df273dd977791406ec339.zip CMake-adbae91cb5a5cb4cd33df273dd977791406ec339.tar.gz CMake-adbae91cb5a5cb4cd33df273dd977791406ec339.tar.bz2 |
ENH: fix cmake so it can boot strap itself better
Diffstat (limited to 'Source/FLTKDialog')
-rw-r--r-- | Source/FLTKDialog/CMakeLists.txt | 12 | ||||
-rw-r--r-- | Source/FLTKDialog/CMakeSetupGUIImplementation.cxx | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/Source/FLTKDialog/CMakeLists.txt b/Source/FLTKDialog/CMakeLists.txt index d110cd8..1c5e8c9 100644 --- a/Source/FLTKDialog/CMakeLists.txt +++ b/Source/FLTKDialog/CMakeLists.txt @@ -1,10 +1,10 @@ SOURCE_FILES(SRCS -CMakeSetupGUI -CMakeSetupGUIImplementation -FLTKDialog -FLTKPropertyItemRow -FLTKPropertyList -FLTKPropertyNameButtonWithHelp +CMakeSetupGUI.cxx +CMakeSetupGUIImplementation.cxx +FLTKDialog.cxx +FLTKPropertyItemRow.cxx +FLTKPropertyList.cxx +FLTKPropertyNameButtonWithHelp.cxx ) diff --git a/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx b/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx index b1eab89..4206e57 100644 --- a/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx +++ b/Source/FLTKDialog/CMakeSetupGUIImplementation.cxx @@ -146,7 +146,7 @@ CMakeSetupGUIImplementation m_PathToExecutable = absolutePath; #if defined(_WIN32) - m_PathToExecutable += "/CMake.exe"; + m_PathToExecutable += "/Debug/CMake.exe"; #else m_PathToExecutable += "/cmake"; #endif |