summaryrefslogtreecommitdiffstats
path: root/Tests/ExportImport
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-01-28 18:21:42 (GMT)
committerBrad King <brad.king@kitware.com>2008-01-28 18:21:42 (GMT)
commit6388ebceb12e8eca3ce0e30528f0edaa990c8f7a (patch)
tree93706ecc2ed10615acdbf78216e3d4bd49389b53 /Tests/ExportImport
parent611bff2c1b8a0ce533d92662504a391c9e3d494b (diff)
downloadCMake-6388ebceb12e8eca3ce0e30528f0edaa990c8f7a.zip
CMake-6388ebceb12e8eca3ce0e30528f0edaa990c8f7a.tar.gz
CMake-6388ebceb12e8eca3ce0e30528f0edaa990c8f7a.tar.bz2
ENH: Restored APPEND option to EXPORT() command in new implementation.
Diffstat (limited to 'Tests/ExportImport')
-rw-r--r--Tests/ExportImport/Export/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/Tests/ExportImport/Export/CMakeLists.txt b/Tests/ExportImport/Export/CMakeLists.txt
index 53fe705..62fe811 100644
--- a/Tests/ExportImport/Export/CMakeLists.txt
+++ b/Tests/ExportImport/Export/CMakeLists.txt
@@ -31,7 +31,11 @@ install(
install(EXPORT exp NAMESPACE exp_ DESTINATION lib/exp)
# Export from build tree.
-export(TARGETS testExe1 testLib1 testLib2 testExe2 testLib3 testLib4
+export(TARGETS testExe1 testLib1 testLib2
NAMESPACE bld_
FILE ExportBuildTree.cmake
)
+export(TARGETS testExe2 testLib3 testLib4
+ NAMESPACE bld_
+ APPEND FILE ExportBuildTree.cmake
+ )