mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 10:50:16 -06:00
Refactoring in commit a2cfa2da4f (GenEx/LINK_LIBRARY: Add features for
framework support on Apple, 2022-02-10, v3.24.0-rc1~661^2) accidentally
removed a `GetParentDirectory` call. Restore it.
Fixes: #23891
10 lines
58 B
C++
10 lines
58 B
C++
|
|
extern void foo();
|
|
|
|
int main()
|
|
{
|
|
|
|
foo();
|
|
return 0;
|
|
}
|