aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorLadislav <Zezula>2013-03-12 16:57:02 +0100
committerLadislav <Zezula>2013-03-12 16:57:02 +0100
commit9605e57854087ac220526008c8b23ce7b2171dff (patch)
tree5c81b4cf5564a1401b2f2c8e87f4fdfc855c05d0 /CMakeLists.txt
parent46af69aeb25c5a4c5f967067862aa33a36d2c786 (diff)
Heart of the Swarm Release
+ Added decryption key for encrypted MPQs from Heart of the Swarm background downloader + Small update of CMakeList.txt (thanks, Pali)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt13
1 files changed, 7 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d78825f..3e5b869 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -28,6 +28,7 @@ set(SRC_FILES
src/SFileReadFile.cpp
src/SFileVerify.cpp
src/libtomcrypt/src/pk/rsa/rsa_verify_simple.c
+ src/libtomcrypt/src/misc/crypt_libc.c
)
set(TOMCRYPT_FILES
@@ -43,7 +44,6 @@ set(TOMCRYPT_FILES
src/libtomcrypt/src/misc/crypt_find_prng.c
src/libtomcrypt/src/misc/crypt_hash_descriptor.c
src/libtomcrypt/src/misc/crypt_hash_is_valid.c
- src/libtomcrypt/src/misc/crypt_libc.c
src/libtomcrypt/src/misc/crypt_ltc_mp_descriptor.c
src/libtomcrypt/src/misc/crypt_prng_descriptor.c
src/libtomcrypt/src/misc/crypt_prng_is_valid.c
@@ -278,9 +278,10 @@ endif()
option(WITH_STATIC "Compile static linked library" OFF)
if(WITH_STATIC)
- add_library(StormLib_static STATIC ${SRC_FILES} ${SRC_ADDITIONAL_FILES})
- target_link_libraries(StormLib_static ${LINK_LIBS})
- set_target_properties(StormLib_static PROPERTIES OUTPUT_NAME StormLib)
+ add_library(storm_static STATIC ${SRC_FILES} ${SRC_ADDITIONAL_FILES})
+ target_link_libraries(storm_static ${LINK_LIBS})
+ set_target_properties(storm_static PROPERTIES OUTPUT_NAME storm)
+ install(TARGETS storm_static RUNTIME DESTINATION bin LIBRARY DESTINATION lib ARCHIVE DESTINATION lib FRAMEWORK DESTINATION /Library/Frameworks)
endif()
if(APPLE)
@@ -290,8 +291,8 @@ if(APPLE)
endif()
if(UNIX)
- set_target_properties(storm PROPERTIES VERSION 8.10.0)
- set_target_properties(storm PROPERTIES SOVERSION 8.10)
+ set_target_properties(storm PROPERTIES VERSION 8.21.0)
+ set_target_properties(storm PROPERTIES SOVERSION 8)
endif()
# On Win32, build StormLib.dll since we don't want to clash with Storm.dll