Cleanup: trailing space in CMake files

This commit is contained in:
Campbell Barton 2018-06-17 20:15:24 +02:00
parent 2ceff8bd63
commit e7a68ef843
9 changed files with 19 additions and 18 deletions

View File

@ -31,12 +31,13 @@ project(BlendThumb)
include_directories(${ZLIB_INCLUDE})
#Can manually add the sources using the set command as follows:
set(SOURCES src/BlenderThumb.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)