diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-09-12 18:26:45 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-09-12 18:26:45 (GMT) |
commit | 9a326a48e7b1624a9f15d3b9617bf23b2bbea034 (patch) | |
tree | 150c1a817de01ff612d59ab2841162a333567752 /Tests/OutOfSource | |
parent | 4cb9d2fd96cd39c17d194c62bff47a6ba45097db (diff) | |
download | CMake-9a326a48e7b1624a9f15d3b9617bf23b2bbea034.zip CMake-9a326a48e7b1624a9f15d3b9617bf23b2bbea034.tar.gz CMake-9a326a48e7b1624a9f15d3b9617bf23b2bbea034.tar.bz2 |
ENH: convert to work with the new syntax for ADD_SUBDIRECTORY
Diffstat (limited to 'Tests/OutOfSource')
-rw-r--r-- | Tests/OutOfSource/SubDir/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Tests/OutOfSource/SubDir/CMakeLists.txt b/Tests/OutOfSource/SubDir/CMakeLists.txt index 02bb9b7..47fa54b 100644 --- a/Tests/OutOfSource/SubDir/CMakeLists.txt +++ b/Tests/OutOfSource/SubDir/CMakeLists.txt @@ -1,4 +1,3 @@ PROJECT(ANOTHER_PROJ) # subdir to a sibling dir -ADD_SUBDIRECTORY(OutOfSourceSubdir - ${OutOfSource_SOURCE_DIR}/${KEN}OutOfSourceSubdir) +ADD_SUBDIRECTORY(${OutOfSource_SOURCE_DIR}/${KEN}OutOfSourceSubdir OutOfSourceSubdir ) |