mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-25 15:49:08 -05:00
c76f3ae5b5
A recent change fixed a case in which CMake incorrectly diagnosed a circular dependency involving a non-linkable executable target. This adds a test for that case.
3 lines
47 B
C
3 lines
47 B
C
extern int foo();
|
|
int main() { return foo(); }
|