diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-01 16:55:23 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-01 16:55:23 (GMT) |
commit | 5bbfbd56f584a43b13f3b2409f168bcfd6e02411 (patch) | |
tree | e992f012c3df6b75d027a9499eeaf1f69cc88ee8 /Tests/SimpleInstall/TestSubDir/TSD_utils.cxx | |
parent | 2936c54cdd4acfd402a0237b29b96d718c64ffbf (diff) | |
download | CMake-5bbfbd56f584a43b13f3b2409f168bcfd6e02411.zip CMake-5bbfbd56f584a43b13f3b2409f168bcfd6e02411.tar.gz CMake-5bbfbd56f584a43b13f3b2409f168bcfd6e02411.tar.bz2 |
ENH: More elaborate install test
Diffstat (limited to 'Tests/SimpleInstall/TestSubDir/TSD_utils.cxx')
-rw-r--r-- | Tests/SimpleInstall/TestSubDir/TSD_utils.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx b/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx new file mode 100644 index 0000000..0277f05 --- /dev/null +++ b/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx @@ -0,0 +1,10 @@ +#include <string.h> + +int TSD(const char* foo) +{ + if ( strcmp(foo, "TEST") == 0 ) + { + return 0; + } + return 1; +} |