Fix the compilation on Windows with CMake and the option BUILD_SHARED_LIBS.

This commit is contained in:
Christophe Guébert 2016-12-07 12:08:32 +01:00
parent 54561a6b32
commit 838b82d12a

View File

@ -41,6 +41,7 @@ option (BUILD_TESTING "Build tests" ON)
if (WIN32)
if (BUILD_SHARED_LIBS)
add_definitions(-D CHARLS_DLL)
set_source_files_properties(src/interface.cpp PROPERTIES COMPILE_FLAGS -DCHARLS_DLL_BUILD)
else()
add_definitions(-D CHARLS_STATIC)
endif()