mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-20 13:22:22 -05:00
Some platforms, Apple or Windows for instance, do not require to duplicate static libraries to resolve mutual dependencies. Moreover, Xcode version 15 emits a warning if a library is duplicated. On Windows, enable a better control of libraries order. Fixes: #20722, #25297
10 lines
68 B
C
10 lines
68 B
C
|
|
extern void lib1(void);
|
|
|
|
int main(void)
|
|
{
|
|
lib1();
|
|
|
|
return 0;
|
|
}
|