mirror of
https://github.com/shadps4-emu/ext-cryptoppwin.git
synced 2024-11-23 01:59:39 +00:00
- Added cryptopp debug lib.
- Reduced cryptopp release lib size. - Added condition to choose lib based on build type.
This commit is contained in:
parent
c1c08762f0
commit
0dd224c681
@ -1,2 +1,7 @@
|
||||
add_library(cryptoppwin SHARED IMPORTED GLOBAL)
|
||||
set_target_properties(cryptoppwin PROPERTIES IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/cryptlib.lib")
|
||||
|
||||
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||
set_target_properties(cryptoppwin PROPERTIES IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/cryptlibd.lib")
|
||||
else()
|
||||
set_target_properties(cryptoppwin PROPERTIES IMPORTED_IMPLIB "${CMAKE_CURRENT_SOURCE_DIR}/lib/cryptlib.lib")
|
||||
endif()
|
BIN
lib/cryptlib.lib
BIN
lib/cryptlib.lib
Binary file not shown.
BIN
lib/cryptlibd.lib
Normal file
BIN
lib/cryptlibd.lib
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user