This website requires JavaScript.
Explore
Help
Sign In
kolan
/
CMake
Watch
1
Star
0
Fork
You've already forked CMake
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
dbef2244f9
CMake
/
Tests
/
IncludeDirectories
/
SystemIncludeDirectories
/
consumer.cpp
10 lines
91 B
C++
Raw
Normal View
History
Unescape
Escape
Add the INTERFACE_SYSTEM_INCLUDE_DIRECTORIES target property. Unlike other target properties, this does not have a corresponding non-INTERFACE variant. This allows propagation of system attribute on include directories from link dependents.
2013-07-02 16:30:10 +04:00
#
include
"upstream.h"
IncludeDirectories: Respect SYSTEM flag when using CONFIG genex. Update the Makefile and Ninja generators to use the config when requesting the include flags.
2015-01-23 01:40:27 +03:00
#
include
"config_iface.h"
Add the INTERFACE_SYSTEM_INCLUDE_DIRECTORIES target property. Unlike other target properties, this does not have a corresponding non-INTERFACE variant. This allows propagation of system attribute on include directories from link dependents.
2013-07-02 16:30:10 +04:00
int
consumer
(
)
{
return
upstream
(
)
;
}