From 1b10860f36378ff24568f11f242acabbcefefefe Mon Sep 17 00:00:00 2001 From: berak Date: Mon, 29 Jul 2013 12:16:37 +0200 Subject: [PATCH] added add_definitions(-DCVAPI_EXPORTS) to cmakelists.txt --- modules/python/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/python/CMakeLists.txt b/modules/python/CMakeLists.txt index 0b4c59d..877b454 100644 --- a/modules/python/CMakeLists.txt +++ b/modules/python/CMakeLists.txt @@ -81,6 +81,10 @@ if(ENABLE_SOLUTION_FOLDERS) set_target_properties(${the_module} PROPERTIES FOLDER "bindings") endif() +if(MSVC) + add_definitions(-DCVAPI_EXPORTS) +endif() + if(CMAKE_COMPILER_IS_GNUCXX AND NOT ENABLE_NOISY_WARNINGS) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-function") endif() -- 2.7.4