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
b279f2b431
CMake
/
Tests
/
ExportImport
/
Import
/
A
/
imp_lib1.c
7 lines
67 B
C
Raw
Normal View
History
Unescape
Escape
Allow add_dependencies() on imported targets (#10395) Imported targets do not themselves build, but we can follow dependencies through them to find real targets. This allows imported targets to depend on custom targets that provide the underlying files at build time.
2010-11-19 21:36:11 +03:00
#
include
"testLib2.h"
ENH: Test transitive link to subdir-imported lib This tests linking to an imported target that is not visible but is a transitive dependency of a target that is visible. See issue #8843.
2009-04-06 19:11:33 +04:00
int
imp_lib1
(
void
)
{
return
testLib2
(
)
;
}