Skip to content
Snippets Groups Projects
Commit 5f19ac83 authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

Fix windows build

parent c5528861
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,10 @@ file(GLOB include_files
# --- definitions ---------
add_definitions(-DWARNINGMSG)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \
-DMATH_NO_PLUGIN_MANAGER -DHAS_MINUIT2 -DR__HAS_MATHMORE -Wno-deprecated-declarations")
-DMATH_NO_PLUGIN_MANAGER -DHAS_MINUIT2 -DR__HAS_MATHMORE")
if(NOT WIN32)
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-declarations")
endif()
# --- making library ------------
add_library(${library_name} STATIC ${source_files} ${include_files})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment