[CMake] Silence message on multi-configuration generators
authorChris Bieneman <beanz@apple.com>
Thu, 18 Aug 2016 18:17:28 +0000 (18:17 +0000)
committerChris Bieneman <beanz@apple.com>
Thu, 18 Aug 2016 18:17:28 +0000 (18:17 +0000)
commit69f289cf1d9714b4e86679b99ccdb131f5890942
tree6e654ff4f502d54f4e0798c1fccc13e38605e86c
parent0596387ad37ec3e9c15f3f22b5341901e1b002fc
[CMake] Silence message on multi-configuration generators

The Xcode and Visual Studio generators always log "-- No build type selected, default to Debug". This is because CMake doesn't initialize "CMAKE_CONFIGURATION_TYPES" until the generator's EnableLanguage call gets hit.

The first place EnableLanguage gets hit in our configuration is in the project() call. Since CMAKE_BUILD_TYPE isn't used until after we call project() it is safe to just move this check down a bit.

llvm-svn: 279110
llvm/CMakeLists.txt