summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-07-13 19:43:40 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2005-07-13 19:43:40 (GMT)
commit4214dd3c2a70e89cda87c1424c80e054d823f7f7 (patch)
tree6a8182319cd80b0016e55b913a488505c8163e1d /Tests
parentaa47caab2db3961bfdd53036e5637df208b319d4 (diff)
downloadCMake-4214dd3c2a70e89cda87c1424c80e054d823f7f7.zip
CMake-4214dd3c2a70e89cda87c1424c80e054d823f7f7.tar.gz
CMake-4214dd3c2a70e89cda87c1424c80e054d823f7f7.tar.bz2
ENH: add a bundle test
Diffstat (limited to 'Tests')
-rw-r--r--Tests/BundleTest/BundleTest.cxx4
-rw-r--r--Tests/BundleTest/CMakeLists.txt4
2 files changed, 8 insertions, 0 deletions
diff --git a/Tests/BundleTest/BundleTest.cxx b/Tests/BundleTest/BundleTest.cxx
new file mode 100644
index 0000000..59c0f1e
--- /dev/null
+++ b/Tests/BundleTest/BundleTest.cxx
@@ -0,0 +1,4 @@
+int main()
+{
+return 0;
+}
diff --git a/Tests/BundleTest/CMakeLists.txt b/Tests/BundleTest/CMakeLists.txt
new file mode 100644
index 0000000..dcc6798
--- /dev/null
+++ b/Tests/BundleTest/CMakeLists.txt
@@ -0,0 +1,4 @@
+PROJECT(BundleTest)
+SET(MACOSX_BUNDLE_INFO_STRING "bundle_info_string")
+ADD_EXECUTABLE(BundleTest MACOSX_BUNDLE BundleTest.cxx)
+