Skip to content
Snippets Groups Projects
Commit 35eb37b6 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

MSVC: issue with dynamic auto linking of boost libraries against wish of...

MSVC: issue with dynamic auto linking of boost libraries against wish of cmake, order of inheritance in the case of multiple inheritance
parent 95fc96b5
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@
#include "IParameterized.h"
#include "ICloneable.h"
class BA_CORE_API_ IDetectorResolution : public IParameterized, public ICloneable
class BA_CORE_API_ IDetectorResolution : public ICloneable, public IParameterized
{
public:
virtual ~IDetectorResolution() {}
......
......@@ -28,7 +28,7 @@ class ProgramOptions;
//! Run one simulation.
class BA_CORE_API_ Simulation : public IParameterized, public ICloneable
class BA_CORE_API_ Simulation : public ICloneable, public IParameterized
{
public:
Simulation();
......
......@@ -16,17 +16,25 @@ if(WIN32)
set(BOOST_ROOT "C:/opt/local_x86_msvc")
endif()
#set(Boost_USE_STATIC_LIBS ON)
#set(Boost_USE_MULTITHREADED ON)
##set(boost_libraries_required program_options iostreams system filesystem regex thread)
#set(boost_libraries_required date_time chrono program_options zlib iostreams system filesystem regex thread)
set(Boost_USE_STATIC_LIBS OFF)
set(Boost_USE_MULTITHREADED ON)
set(Boost_USE_STATIC_RUNTIME OFF)
#set(BOOST_ALL_DYN_LINK ON)
set(boost_libraries_required program_options iostreams system filesystem regex thread)
set(BOOST_ALL_DYN_LINK ON)
add_definitions(-DBOOST_ALL_DYN_LINK)
set(boost_libraries_required date_time chrono program_options zlib iostreams system filesystem regex thread)
if(BORNAGAIN_PYTHON)
list(APPEND boost_libraries_required python)
endif()
find_package(Boost 1.48.0 COMPONENTS ${boost_libraries_required} REQUIRED)
message(STATUS "XXX ${Boost_INCLUDE_DIRS}")
message(STATUS "XXX ${Boost_LIBRARY_DIRS}")
message(STATUS "Boost_INCLUDE_DIRS: ${Boost_INCLUDE_DIRS}")
message(STATUS "Boost_LIBRARY_DIRS: ${Boost_LIBRARY_DIRS}")
message(STATUS "Boost_LIBRARIES: ${Boost_LIBRARIES}")
# --- GSL ---
if(NOT BUILTIN_GSL)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment