Displaying 8 results from an estimated 8 matches for "cmake_configuration_typ".
Did you mean:
cmake_configuration_types
2020 Nov 17
10
wasteful cmake defaults
...'
diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt
index 21563e15118..3f5821351a1 100644
--- a/llvm/CMakeLists.txt
+++ b/llvm/CMakeLists.txt
@@ -55,8 +55,8 @@ set(CMAKE_CXX_STANDARD_REQUIRED YES)
set(CMAKE_CXX_EXTENSIONS NO)
if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
- message(STATUS "No build type selected, default to Debug")
- set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build type (default Debug)" FORCE)
+ # message(STATUS "No build type selected, default to Debug")
+ # set(CMAKE_BUILD_TYPE...
2020 Nov 18
1
wasteful cmake defaults
...xt
>> index 21563e15118..3f5821351a1 100644
>> --- a/llvm/CMakeLists.txt
>> +++ b/llvm/CMakeLists.txt
>> @@ -55,8 +55,8 @@ set(CMAKE_CXX_STANDARD_REQUIRED YES)
>> set(CMAKE_CXX_EXTENSIONS NO)
>>
>> if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
>> - message(STATUS "No build type selected, default to Debug")
>> - set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build type (default Debug)" FORCE)
>> + # message(STATUS "No build type selected, default to Debug")
>...
2020 Nov 17
0
wasteful cmake defaults
...MakeLists.txt b/llvm/CMakeLists.txt
> index 21563e15118..3f5821351a1 100644
> --- a/llvm/CMakeLists.txt
> +++ b/llvm/CMakeLists.txt
> @@ -55,8 +55,8 @@ set(CMAKE_CXX_STANDARD_REQUIRED YES)
> set(CMAKE_CXX_EXTENSIONS NO)
>
> if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
> - message(STATUS "No build type selected, default to Debug")
> - set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build type (default Debug)" FORCE)
> + # message(STATUS "No build type selected, default to Debug")
> + # set(...
2020 Nov 18
0
wasteful cmake defaults
...ists.txt b/llvm/CMakeLists.txt
> index 21563e15118..3f5821351a1 100644
> --- a/llvm/CMakeLists.txt
> +++ b/llvm/CMakeLists.txt
> @@ -55,8 +55,8 @@ set(CMAKE_CXX_STANDARD_REQUIRED YES)
> set(CMAKE_CXX_EXTENSIONS NO)
>
> if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
> - message(STATUS "No build type selected, default to Debug")
> - set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build type (default
> Debug)" FORCE)
> + # message(STATUS "No build type selected, default to Debug")
>...
2020 Nov 17
0
wasteful cmake defaults
...ists.txt b/llvm/CMakeLists.txt
> index 21563e15118..3f5821351a1 100644
> --- a/llvm/CMakeLists.txt
> +++ b/llvm/CMakeLists.txt
> @@ -55,8 +55,8 @@ set(CMAKE_CXX_STANDARD_REQUIRED YES)
> set(CMAKE_CXX_EXTENSIONS NO)
>
> if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
> - message(STATUS "No build type selected, default to Debug")
> - set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build type (default Debug)" FORCE)
> + # message(STATUS "No build type selected, default to Debug")
> + #...
2015 Feb 24
3
[LLVMdev] [RFC] Raise minimum required CMake version to 3.0
...tp://community.kde.org/Frameworks/Epics/CMake_target_usage_requirements>)
* target_include_directories command (allows us to cleanup our code)
* target_compile_definitions command (allows us to cleanup our code)
* More updates to the Interface library features
CMake 2.8.12
* New ALIAS targets
* CMAKE_CONFIGURATION_TYPES variable is defined in multi-config generators (we already use this)
* XCODE_ATTRIBUTE_* might be nice for our Xcode users…
* cmake_reset_check_state - would be handy for anyone doing development against changing target operating systems
CMake 3.0
* CMAKE_SYSROOT
* CMAKE_<LANG>_COMPILER_TA...
2020 Nov 18
0
wasteful cmake defaults
...xt
>> index 21563e15118..3f5821351a1 100644
>> --- a/llvm/CMakeLists.txt
>> +++ b/llvm/CMakeLists.txt
>> @@ -55,8 +55,8 @@ set(CMAKE_CXX_STANDARD_REQUIRED YES)
>> set(CMAKE_CXX_EXTENSIONS NO)
>>
>> if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
>> - message(STATUS "No build type selected, default to Debug")
>> - set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build type (default Debug)" FORCE)
>> + # message(STATUS "No build type selected, default to Debug")
>...
2015 Feb 24
2
[LLVMdev] [RFC] Raise minimum required CMake version to 3.0
> On Feb 24, 2015, at 11:13 AM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
>>
>> On Feb 24, 2015, at 9:33 AM, Chris Bieneman <beanz at apple.com> wrote:
>>
>>>
>>> On Feb 24, 2015, at 8:45 AM, Tobias Grosser <tobias at grosser.es> wrote:
>>>
>>> On 09.02.2015 20:12, Chris Bieneman wrote:
>>>> It