diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2013-10-24 22:26:38 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-10-24 22:26:38 +0200 |
commit | bd7b99f34b8ae19231684eefea6285af1bfb735d (patch) | |
tree | e78610026b8d4ddbe3acd3796fd8aae7b9ef5fb6 | |
parent | 929845cce8fddc3ea958aced758472fae450f0aa (diff) |
fix pdb install (it's real late now)
Signed-off-by: Stanislaw Halik <sthalik@misaki.pl>
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fbeeca41..dd5c0317 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -786,7 +786,7 @@ endif() if(MSVC) file(GLOB pdbs1 "${CMAKE_BINARY_DIR}/Release/*.pdb") file(GLOB pdbs2 "${CMAKE_BINARY_DIR}/*.pdb") - install(FILES ${pdbs} ${pdbs2} DESTINATION .) + install(FILES ${pdbs1} ${pdbs2} DESTINATION .) endif() if(SDK_SM_FACEAPI_PATH AND (MSVC80 OR MINGW)) |