In makefile parlance, I'm trying to add -I. (ie: the current directory) to
my include paths
I tried the following:
include_directories(".")
This doesn't work unfortunately, as relative paths are interpreted as
relative to the current source directory
<https://cmake.org/cmake/help/v3.0/command/include_directories.html>
That is, if this statement is in my top level CMakeLists.txt, located in
~/src/project, the include directive added will be "-I ~/src/project/.",
whereas I'm trying to add "-I ."
The reason for my wanting this is that we have sources for a single library
in several subdirs.
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
add_library(
foo
STATIC
foo.cpp
bar/bar.cpp
)
In bar/bar.cpp, I have a relative include
#include "../foo.h"
With the above setup, this will fail to compile as only ~/src/project/foo
will be added to the include paths.
I'm aware that if I explicitly added the path it would work
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/bar)
However, if there is a way to get -I. added to my include path, that's what
I'm after.
TIA
Steve
--
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