From 7c5a220e1df92092e515dcd5707526d516c4021e Mon Sep 17 00:00:00 2001 From: William Woodall Date: Thu, 21 Jul 2016 16:41:29 -0700 Subject: [PATCH] ensure the locally generated config.h is used --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5a4a5593b..aca843565 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -114,7 +114,7 @@ endif() # FCL's own include dir should be at the front of the include path include_directories(BEFORE "include") -include_directories("${CMAKE_CURRENT_BINARY_DIR}/include") +include_directories(BEFORE "${CMAKE_CURRENT_BINARY_DIR}/include") if(PKG_CONFIG_FOUND) pkg_check_modules(CCD ccd)