1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-16 14:08:35 +08:00
Files
CMake/Tests/ConfigSources/iface.h
Brad King 9c9e66289a Tests: Enable ConfigSources test on every configuration
Revise the test itself to work in all configurations and verify that
certain sources are only built by whatever configuration is tested.
2019-10-04 10:39:00 -04:00

11 lines
106 B
C

int iface_src();
#ifdef CFG_DEBUG
int iface_debug();
#endif
#ifdef CFG_OTHER
int iface_other();
#endif