diff options
author | Brad King <brad.king@kitware.com> | 2013-06-14 12:35:52 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-06-14 12:35:52 (GMT) |
commit | b9f4383f698ae9207bb2701f1b82753e239e3248 (patch) | |
tree | 845114f8675d820c345d493847c6e5ecb8f3d442 /Source/CMakeLists.txt | |
parent | 82771f186220b45a9aaf10ed416f1df135e56c36 (diff) | |
download | CMake-b9f4383f698ae9207bb2701f1b82753e239e3248.zip CMake-b9f4383f698ae9207bb2701f1b82753e239e3248.tar.gz CMake-b9f4383f698ae9207bb2701f1b82753e239e3248.tar.bz2 |
Split cmBootstrapCommands.cxx into two sources
The single translation unit has grown too large for some compilers.
Split it into cmBootstrapCommands1.cxx and cmBootstrapCommands2.cxx.
Diffstat (limited to 'Source/CMakeLists.txt')
-rw-r--r-- | Source/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 1893167..a243702 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -113,7 +113,8 @@ endif() set(SRCS cmStandardIncludes.cxx cmArchiveWrite.cxx - cmBootstrapCommands.cxx + cmBootstrapCommands1.cxx + cmBootstrapCommands2.cxx cmCacheManager.cxx cmCacheManager.h cmCommands.cxx |