The following issue has been SUBMITTED. 
====================================================================== 
https://cmake.org/Bug/view.php?id=15780 
====================================================================== 
Reported By:                Kjell Irgens
Assigned To:                
====================================================================== 
Project:                    CMake
Issue ID:                   15780
Category:                   CMake
Reproducibility:            always
Severity:                   minor
Priority:                   normal
Status:                     new
====================================================================== 
Date Submitted:             2015-10-10 14:12 EDT
Last Modified:              2015-10-10 14:12 EDT
====================================================================== 
Summary:                    Dependencies relative to /usr/include are ignored
Description: 
Include files which are included relative to /usr/include (or
/usr/local/include) do not end up in depend.make.  I do not know if this is some
kind of optimization to speed up dependency checking, but there should at least
be some way to ensure that a specific subdirectory of /usr/include (like
/usr/include/curl in the example below) is included.

The way it works on unix-like systems now, some external projects (like gtk)
have include dependencies checked while others (like curl) do not.  This is not
very consistent.

This may of course be a Fedora-specific problem, I have not checked that.


Steps to Reproduce: 
CMakeLists.txt:

cmake_minimum_required (VERSION 3.2)
project(mytest VERSION 1.0)
set(PROJECT_RELEASE rc2)
include_regular_expression("^.*$" "^.*$")
find_package (CURL REQUIRED)
add_executable (a.out main.cpp)

main.cpp:

#include <curl/curl.h>
int main() {return 0;}


Then run:
cmake .
make

Output of make:
CMake Error: Cannot find file "curl/curl.h".
[ 50%] Building CXX object CMakeFiles/a.out.dir/main.cpp.o
[100%] Linking CXX executable a.out

ls -l /usr/include/curl/curl.h
-rw-r--r--. 1 root root 89014 Dec 28  2014 /usr/include/curl/curl.h


====================================================================== 

Issue History 
Date Modified    Username       Field                    Change               
====================================================================== 
2015-10-10 14:12 Kjell Irgens   New Issue                                    
======================================================================

-- 

Powered by www.kitware.com

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Kitware offers various services to support the CMake community. For more 
information on each offering, please visit:

CMake Support: http://cmake.org/cmake/help/support.html
CMake Consulting: http://cmake.org/cmake/help/consulting.html
CMake Training Courses: http://cmake.org/cmake/help/training.html

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/cmake-developers

Reply via email to