diff options
Diffstat (limited to 'Tests/PreOrder/Library')
-rw-r--r-- | Tests/PreOrder/Library/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Tests/PreOrder/Library/simpleLib.cxx | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Tests/PreOrder/Library/CMakeLists.txt b/Tests/PreOrder/Library/CMakeLists.txt new file mode 100644 index 0000000..6c011ec --- /dev/null +++ b/Tests/PreOrder/Library/CMakeLists.txt @@ -0,0 +1,2 @@ +ADD_LIBRARY(simpleLib simpleLib.cxx ) + diff --git a/Tests/PreOrder/Library/simpleLib.cxx b/Tests/PreOrder/Library/simpleLib.cxx new file mode 100644 index 0000000..281d888 --- /dev/null +++ b/Tests/PreOrder/Library/simpleLib.cxx @@ -0,0 +1,3 @@ +void simpleLib() +{ +} |