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
6eb3218105
CMake
/
Tests
/
CMakeCommands
/
target_link_libraries
/
depC.cpp
14 lines
97 B
C++
Raw
Normal View
History
Unescape
Escape
target_link_libraries: Add LINK_(PUBLIC|PRIVATE) options Makes it possible to specify the link dependencies and link interfaces in one command without repetition.
2011-10-07 04:41:37 +04:00
#
include
"depC.h"
int
DepC
:
:
foo
(
)
{
return
0
;
}
DepA
DepC
:
:
getA
(
)
{
DepA
a
;
return
a
;
GenerateExportHeader test: add newlines before end of file
2012-01-18 03:01:08 +04:00
}