diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-14 20:01:00 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-09-14 20:01:00 (GMT) |
commit | 013b66d8fa7e3b832f5e6c88efd33bd369fda7eb (patch) | |
tree | 5bd7d3eded68277c2817ed4c427a8f746b45dbab /Tests/VSExternalInclude/main.cpp | |
parent | 32fe8caaefba6d0ec8ea183ec87cedad29a660c0 (diff) | |
download | CMake-013b66d8fa7e3b832f5e6c88efd33bd369fda7eb.zip CMake-013b66d8fa7e3b832f5e6c88efd33bd369fda7eb.tar.gz CMake-013b66d8fa7e3b832f5e6c88efd33bd369fda7eb.tar.bz2 |
ENH: add a test for external projects
Diffstat (limited to 'Tests/VSExternalInclude/main.cpp')
-rw-r--r-- | Tests/VSExternalInclude/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/VSExternalInclude/main.cpp b/Tests/VSExternalInclude/main.cpp new file mode 100644 index 0000000..ea1047c --- /dev/null +++ b/Tests/VSExternalInclude/main.cpp @@ -0,0 +1,9 @@ + +#include "lib2.h" + +int main(int argc, char** argv) +{ + int num = add1_and_mult2(4); + + return 0; +} |