this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Prevent CMake from filtering our includes

Fixes #586

Problem present in newer CMake versions

+4 -1
+4 -1
src/CMakeLists.txt
··· 1 1 project(darling-src) 2 2 3 + unset(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES) 4 + unset(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES) 5 + 3 6 cmake_minimum_required(VERSION 2.4.0) 4 7 cmake_policy(SET CMP0005 NEW) 5 8 ··· 41 44 include(compiler_include) 42 45 GetCompilerInclude(COMPILER_INC_PATH) 43 46 message(STATUS "Compiler include path detected as ${COMPILER_INC_PATH}") 44 - include_directories(/usr/..${COMPILER_INC_PATH}) 47 + include_directories(SYSTEM ${COMPILER_INC_PATH}) 45 48 46 49 find_package(BISON) 47 50 find_package(FLEX)