Files
CMake/Tests/RunCMake/install/file-GET_RUNTIME_DEPENDENCIES-linux/toplib.c
T
Kyle Edwards 1f9ef25130 file: Add GET_RUNTIME_DEPENDENCIES mode
Co-Authored-by: Bryon Bean <bryon.bean@kitware.com>
2019-06-10 14:35:28 -04:00

9 lines
119 B
C

extern void test_rpath(void);
extern void test_runpath(void);
void toplib(void)
{
test_rpath();
test_runpath();
}