I have a whole group of goals, and I'm trying to set include directories on each target basis.
set_target_properties (foo PROPERTIES INCLUDE_DIRECTORIES ${CMAKE_Fortran_MODULE_DIRECTORY}/bar)
When I create ( make VERBOSE=1 ) this on Mac OS X, I get
... -J../build/modules/foo -I../build/modules/bar
When I do the same in Linux, I get
... -J../build/modules/foo ...
The only difference I see is that on mac I use cmake 2.8.8 and on linux I use 2.8.7. Is this not supported in previous versions prior to 2.8.8?
source share