diff options
author | Brad King <brad.king@kitware.com> | 2012-09-25 18:36:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-09-25 19:23:35 (GMT) |
commit | efc83b369b26624e7f0fb90d9125ef5ec6d1f7fa (patch) | |
tree | e8a44e68eb8f3149e6873a36914fd8cde3e1140e /Tests/PDBDirectoryAndName | |
parent | b294457e2b96f40d01a22b867666277495977fa8 (diff) | |
download | CMake-efc83b369b26624e7f0fb90d9125ef5ec6d1f7fa.zip CMake-efc83b369b26624e7f0fb90d9125ef5ec6d1f7fa.tar.gz CMake-efc83b369b26624e7f0fb90d9125ef5ec6d1f7fa.tar.bz2 |
Document that PDB_(NAME|OUTPUT_DIRECTORY) are ignored for VS 6
Diffstat (limited to 'Tests/PDBDirectoryAndName')
-rw-r--r-- | Tests/PDBDirectoryAndName/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/PDBDirectoryAndName/CMakeLists.txt b/Tests/PDBDirectoryAndName/CMakeLists.txt index a9d46ca..865d278 100644 --- a/Tests/PDBDirectoryAndName/CMakeLists.txt +++ b/Tests/PDBDirectoryAndName/CMakeLists.txt @@ -53,6 +53,11 @@ target_link_libraries(myexe2 mylibA mylibD) #----------------------------------------------------------------------------- # Check that PDB files actually appear where expected. +# The PDB_NAME and PDB_OUTPUT_DIRECTORY options do not work in VS 6. +if("${CMAKE_GENERATOR}" MATCHES "Visual Studio 6") + return() +endif() + set(pdbs "") foreach(t ${my_targets}) get_property(pdb_name TARGET ${t} PROPERTY PDB_NAME) |