Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-06-17 21:37:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-06-17 21:37:10 +0300
commit05dc109553f447a8ba0d1db7daf2f2c39fcb6d38 (patch)
tree00527697bed436d0be5de5c26bd233191a8914b9 /release/windows
parent195879a50d6b058d78ff6228d8eda159c7abead3 (diff)
parent86e20a2e63ea7c4810782942d5a3505f21718068 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'release/windows')
-rw-r--r--release/windows/blendthumb/CMakeLists.txt17
1 files changed, 9 insertions, 8 deletions
diff --git a/release/windows/blendthumb/CMakeLists.txt b/release/windows/blendthumb/CMakeLists.txt
index 1e5f5131a36..f0da43c2614 100644
--- a/release/windows/blendthumb/CMakeLists.txt
+++ b/release/windows/blendthumb/CMakeLists.txt
@@ -26,17 +26,18 @@
#-----------------------------------------------------------------------------
cmake_minimum_required(VERSION 2.8)
project(BlendThumb)
-
+
#Bring the headers, such as Student.h into the project
include_directories(${ZLIB_INCLUDE})
-
+
#Can manually add the sources using the set command as follows:
-set(SOURCES src/BlenderThumb.cpp
- src/BlendThumb.def
- src/BlendThumb.rc
- src/Dll.cpp
+set(SRC
+ src/BlenderThumb.cpp
+ src/BlendThumb.def
+ src/BlendThumb.rc
+ src/Dll.cpp
)
-
-add_library(BlendThumb SHARED ${SOURCES})
+
+add_library(BlendThumb SHARED ${SRC})
target_link_libraries(BlendThumb ${ZLIB_LIBS})
install (TARGETS BlendThumb DESTINATION bin)