mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-24 09:09:43 -05:00
9ae3382855
Now that these cases are in a dedicated test we can drop the `file-GET_RUNTIME_DEPENDENCIES-` prefix from their name.
10 lines
128 B
C
10 lines
128 B
C
extern void test_rpath(void);
|
|
extern void test_runpath(void);
|
|
|
|
int main(void)
|
|
{
|
|
test_rpath();
|
|
test_runpath();
|
|
return 0;
|
|
}
|