mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 22:00:10 -05:00
Debug optimized cache fixes
This commit is contained in:
@@ -20,6 +20,17 @@ SOURCE_FILES(LibrarySources
|
||||
SOURCE_FILES_REMOVE(LibrarySources create_file.cxx GENERATED nonexisting_file)
|
||||
ADD_LIBRARY(CMakeTestLibrary LibrarySources)
|
||||
|
||||
IF(WIN32)
|
||||
IF(NOT CYGWIN)
|
||||
TARGET_LINK_LIBRARIES(CMakeTestLibrary
|
||||
debug
|
||||
user32.lib)
|
||||
TARGET_LINK_LIBRARIES(CMakeTestLibrary
|
||||
optimized
|
||||
kernel32.lib)
|
||||
ENDIF(NOT CYGWIN)
|
||||
ENDIF(WIN32)
|
||||
|
||||
#
|
||||
# Create shared library
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user