summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-08-27 10:53:46 +0200
committerMattes D <github@xoft.cz>2014-08-27 10:53:46 +0200
commitb361e994ef4aac5e2f5672a291d4abf1a3714bc6 (patch)
tree58b728ecba550f9df6695a47509609353b329a4b
parentAnvilStats: Fixed Win64 compilation. (diff)
downloadcuberite-b361e994ef4aac5e2f5672a291d4abf1a3714bc6.tar
cuberite-b361e994ef4aac5e2f5672a291d4abf1a3714bc6.tar.gz
cuberite-b361e994ef4aac5e2f5672a291d4abf1a3714bc6.tar.bz2
cuberite-b361e994ef4aac5e2f5672a291d4abf1a3714bc6.tar.lz
cuberite-b361e994ef4aac5e2f5672a291d4abf1a3714bc6.tar.xz
cuberite-b361e994ef4aac5e2f5672a291d4abf1a3714bc6.tar.zst
cuberite-b361e994ef4aac5e2f5672a291d4abf1a3714bc6.zip
-rw-r--r--Tools/AnvilStats/CMakeLists.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/Tools/AnvilStats/CMakeLists.txt b/Tools/AnvilStats/CMakeLists.txt
index 8cbcf6be4..557a4c17a 100644
--- a/Tools/AnvilStats/CMakeLists.txt
+++ b/Tools/AnvilStats/CMakeLists.txt
@@ -118,5 +118,27 @@ add_executable(AnvilStats
${SHARED_OSS_HDR}
)
+
target_link_libraries(AnvilStats zlib)
+
+
+
+
+# Under MSVC we need to enlarge the default stack size for the executable:
+if (MSVC)
+ get_target_property(TEMP AnvilStats LINK_FLAGS)
+ if (TEMP STREQUAL "TEMP-NOTFOUND")
+ SET(TEMP "") # set to empty string
+ message("LINKER_FLAGS not found")
+ else ()
+ SET(TEMP "${TEMP} ") # a space to cleanly separate from existing content
+ message("LINKER_FLAGS: ${LINKER_FLAGS}")
+ endif ()
+ # append our values
+ SET(TEMP "${TEMP}/STACK:16777216")
+ set_target_properties(AnvilStats PROPERTIES LINK_FLAGS ${TEMP})
+endif ()
+
+
+