diff options
author | Brad King <brad.king@kitware.com> | 2017-11-28 16:24:26 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-11-28 16:24:26 (GMT) |
commit | 4ff89fb6084d84aabe2e64aeccad03794af65a8a (patch) | |
tree | 0982bae88c784b984465112c287ddc48a72dbe42 /CMakeLists.txt | |
parent | 6e613ff399166c59e881331027e65c601feab807 (diff) | |
download | CMake-4ff89fb6084d84aabe2e64aeccad03794af65a8a.zip CMake-4ff89fb6084d84aabe2e64aeccad03794af65a8a.tar.gz CMake-4ff89fb6084d84aabe2e64aeccad03794af65a8a.tar.bz2 |
AIX: Add -pthread flag to enable std::thread with GCC
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fafe536..ebeca22 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,11 @@ # file Copyright.txt or https://cmake.org/licensing for details. cmake_minimum_required(VERSION 3.1 FATAL_ERROR) +set(CMAKE_USER_MAKE_RULES_OVERRIDE_C ${CMAKE_CURRENT_SOURCE_DIR}/Source/Modules/OverrideC.cmake) +set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX ${CMAKE_CURRENT_SOURCE_DIR}/Source/Modules/OverrideCXX.cmake) project(CMake) +unset(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX) +unset(CMAKE_USER_MAKE_RULES_OVERRIDE_C) # Make sure we can find internal find_package modules only used for # building CMake and not for shipping externally |