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

First step in Windows build complete: compilation and running without root

parent 4f982664
No related branches found
No related tags found
No related merge requests found
Showing
with 65 additions and 29 deletions
...@@ -20,6 +20,8 @@ ...@@ -20,6 +20,8 @@
#include "IParameterized.h" #include "IParameterized.h"
#include <cmath> #include <cmath>
#include "Numeric.h"
class IFTDistribution1D class IFTDistribution1D
{ {
public: public:
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
TARGET = BornAgainCore TARGET = BornAgainCore
TEMPLATE = lib TEMPLATE = lib
CONFIG += plugin # to remove versions from file name CONFIG += lib # to remove versions from file name
QT -= core gui QT -= core gui
QMAKE_EXTENSION_SHLIB = so # making standard *.so extension #QMAKE_EXTENSION_SHLIB = so # making standard *.so extension
#CONFIG += BORNAGAIN_PYTHON #CONFIG += BORNAGAIN_PYTHON
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
...@@ -349,5 +349,5 @@ CONFIG(debug, debug|release) { ...@@ -349,5 +349,5 @@ CONFIG(debug, debug|release) {
target.path = $$PWD/../lib target.path = $$PWD/../lib
INSTALLS += target INSTALLS += target
QMAKE_DISTCLEAN += $$target.path/$(TARGET) QMAKE_DISTCLEAN += $$target.path/$(TARGET)
QMAKE_POST_LINK = (make install) QMAKE_POST_LINK = $$MAKE_COMMAND -f $(MAKEFILE) install
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#ifndef GEOMETRY_BASICVECTOR3D_H #ifndef GEOMETRY_BASICVECTOR3D_H
#define GEOMETRY_BASICVECTOR3D_H #define GEOMETRY_BASICVECTOR3D_H
#include <cmath> #include "Numeric.h"
#include <complex> #include <complex>
namespace Geometry { namespace Geometry {
......
...@@ -21,6 +21,10 @@ ...@@ -21,6 +21,10 @@
//! Floating-point epsilon, tolerances, almost-equal. //! Floating-point epsilon, tolerances, almost-equal.
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
namespace Numeric { namespace Numeric {
static const double required_precision = 1.e-4; static const double required_precision = 1.e-4;
......
...@@ -185,7 +185,7 @@ void Utils::EnableFloatingPointExceptions() ...@@ -185,7 +185,7 @@ void Utils::EnableFloatingPointExceptions()
#ifdef DEBUG_FPE #ifdef DEBUG_FPE
std::cout << "Utils::EnableFloatingPointExceptions() -> Enabling floating point exception debugging" std::cout << "Utils::EnableFloatingPointExceptions() -> Enabling floating point exception debugging"
<< std::endl; << std::endl;
feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW); // NOT CROSS-PLATFORM!!! feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW);
// feenableexcept(-1); // feenableexcept(-1);
#else #else
std::cout << "Utils::EnableFloatingPointExceptions() -> Can't enable floating point exceptions. Available in debug mode only." std::cout << "Utils::EnableFloatingPointExceptions() -> Can't enable floating point exceptions. Available in debug mode only."
......
...@@ -7,7 +7,7 @@ CONFIG += console build_all ...@@ -7,7 +7,7 @@ CONFIG += console build_all
QT -= core gui QT -= core gui
# including common project properties # including common project properties
include($$PWD/../../../shared.pri) include(../../../shared.pri)
SOURCES += main.cpp SOURCES += main.cpp
...@@ -41,7 +41,6 @@ INCLUDEPATH += $${PWD}/../../../ThirdParty/gtest/gtest-1.6.0/include ...@@ -41,7 +41,6 @@ INCLUDEPATH += $${PWD}/../../../ThirdParty/gtest/gtest-1.6.0/include
############################################################################### ###############################################################################
MY_DEPENDENCY_LIB = gtest BornAgainCore MY_DEPENDENCY_LIB = gtest BornAgainCore
MY_DEPENDENCY_DEST =$$PWD/../../.. MY_DEPENDENCY_DEST =$$PWD/../../..
SONAME = so
# INCLUDEPATH += $${MY_DEPENDENCY_DEST}/inc # INCLUDEPATH += $${MY_DEPENDENCY_DEST}/inc
for(dep, MY_DEPENDENCY_LIB) { for(dep, MY_DEPENDENCY_LIB) {
LIBS += $${MY_DEPENDENCY_DEST}/lib/lib$${dep}.$${SONAME} LIBS += $${MY_DEPENDENCY_DEST}/lib/lib$${dep}.$${SONAME}
...@@ -52,4 +51,4 @@ for(dep, MY_DEPENDENCY_LIB) { ...@@ -52,4 +51,4 @@ for(dep, MY_DEPENDENCY_LIB) {
############################################################################### ###############################################################################
# runs automatically tests right after linking # runs automatically tests right after linking
############################################################################### ###############################################################################
QMAKE_POST_LINK = $$PWD/$(TARGET) 2> /dev/null QMAKE_POST_LINK = $$PWD/$(DESTDIR_TARGET)
...@@ -3,12 +3,12 @@ ...@@ -3,12 +3,12 @@
############################################################################### ###############################################################################
TARGET = gtest TARGET = gtest
TEMPLATE = lib TEMPLATE = lib
CONFIG += lib plugin CONFIG += lib #plugin
QT -= gui core QT -= gui core
QMAKE_EXTENSION_SHLIB = so #QMAKE_EXTENSION_SHLIB = so
include($$PWD/../../shared.pri) include(../../shared.pri)
mygtest = gtest-1.6.0 mygtest = gtest-1.6.0
...@@ -16,17 +16,17 @@ INCLUDEPATH += $$mygtest/include ...@@ -16,17 +16,17 @@ INCLUDEPATH += $$mygtest/include
INCLUDEPATH += $$mygtest INCLUDEPATH += $$mygtest
SOURCES += \ SOURCES += \
./$$mygtest/src/gtest-all.cc $$PWD/$$mygtest/src/gtest-all.cc
HEADERS += \ HEADERS += \
./$$mygtest/src/gtest-internal-inl.h $$PWD/$$mygtest/src/gtest-internal-inl.h
OBJECTS_DIR = obj OBJECTS_DIR = obj
############################################################################### ###############################################################################
# Installing library into dedicated directory at the end of compilation # Installing library into dedicated directory at the end of compilation
############################################################################### ###############################################################################
MYPREFIX = $$PWD/../.. # place to install library MYPREFIX = ../.. # place to install library
target.path = $$MYPREFIX/lib target.path = $$MYPREFIX/lib
INSTALLS += target INSTALLS += target
##includes.files = $$mygtest/include/gtest/*.h ##includes.files = $$mygtest/include/gtest/*.h
...@@ -40,5 +40,4 @@ INSTALLS += target ...@@ -40,5 +40,4 @@ INSTALLS += target
#QMAKE_DISTCLEAN += -r $$includes.path/gtest #QMAKE_DISTCLEAN += -r $$includes.path/gtest
QMAKE_DISTCLEAN += $$target.path/$(TARGET) QMAKE_DISTCLEAN += $$target.path/$(TARGET)
QMAKE_POST_LINK = (make install) QMAKE_POST_LINK = $$MAKE_COMMAND -f $(MAKEFILE) install
win32 {
MAKE_COMMAND = mingw32-make
SONAME = a
}
macx|unix {
MAKE_COMMAND = make
SONAME = so
}
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# checking common prerequisites # checking common prerequisites
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
...@@ -5,7 +14,7 @@ lessThan(QT_VERSION, 4.5) { ...@@ -5,7 +14,7 @@ lessThan(QT_VERSION, 4.5) {
error("BornAgain requires Qt 4.5 or greater") error("BornAgain requires Qt 4.5 or greater")
} }
!macx:!unix { !macx:!unix:!win32 {
error("Unknown operation system") error("Unknown operation system")
} }
...@@ -25,7 +34,12 @@ isEqual(env_debug_variable, "yes") { ...@@ -25,7 +34,12 @@ isEqual(env_debug_variable, "yes") {
# --- checking gsl header --- # --- checking gsl header ---
GSL_HEADERFILE = gsl/gsl_sf_bessel.h GSL_HEADERFILE = gsl/gsl_sf_bessel.h
GSL_HEADER_LOCATIONS = /opt/local/include /usr/local/include /usr/include macx|unix {
GSL_HEADER_LOCATIONS = /opt/local/include /usr/local/include /usr/include
}
win32 {
GSL_HEADER_LOCATIONS = "C:/Program Files (x86)/GnuWin32/include"
}
for(dir, GSL_HEADER_LOCATIONS): isEmpty(GSL_INCLUDE): exists($${dir}/$${GSL_HEADERFILE}): GSL_INCLUDE = $${dir} for(dir, GSL_HEADER_LOCATIONS): isEmpty(GSL_INCLUDE): exists($${dir}/$${GSL_HEADERFILE}): GSL_INCLUDE = $${dir}
isEmpty(GSL_INCLUDE): message("Can't find" $${GSL_HEADERFILE} "in" $${GSL_HEADER_LOCATIONS}) isEmpty(GSL_INCLUDE): message("Can't find" $${GSL_HEADERFILE} "in" $${GSL_HEADER_LOCATIONS})
GSL_LIB = $$replace(GSL_INCLUDE,"include","lib") GSL_LIB = $$replace(GSL_INCLUDE,"include","lib")
...@@ -42,7 +56,12 @@ INCLUDEPATH *= $${EIGEN_INCLUDE} ...@@ -42,7 +56,12 @@ INCLUDEPATH *= $${EIGEN_INCLUDE}
# --- checking fftw3 --- # --- checking fftw3 ---
FFTW3_HEADERFILE = fftw3.h FFTW3_HEADERFILE = fftw3.h
FFTW3_HEADER_LOCATIONS = /opt/local/include /usr/local/include /usr/include macx|unix {
FFTW3_HEADER_LOCATIONS = /opt/local/include /usr/local/include /usr/include
}
win32 {
FFTW3_HEADER_LOCATIONS = "C:/Program Files (x86)/Libraries/fftw-3.3.3-dll32/include"
}
for(dir, FFTW3_HEADER_LOCATIONS): isEmpty(FFTW3_INCLUDE): exists($${dir}/$${FFTW3_HEADERFILE}): FFTW3_INCLUDE = $${dir} for(dir, FFTW3_HEADER_LOCATIONS): isEmpty(FFTW3_INCLUDE): exists($${dir}/$${FFTW3_HEADERFILE}): FFTW3_INCLUDE = $${dir}
isEmpty(FFTW3_INCLUDE): message("Can't find" $${FFTW3_HEADERFILE} "in" $${FFTW3_HEADER_LOCATIONS}) isEmpty(FFTW3_INCLUDE): message("Can't find" $${FFTW3_HEADERFILE} "in" $${FFTW3_HEADER_LOCATIONS})
FFTW3_LIB = $$replace(FFTW3_INCLUDE,"include","lib") FFTW3_LIB = $$replace(FFTW3_INCLUDE,"include","lib")
...@@ -52,24 +71,37 @@ LIBS += -lfftw3 ...@@ -52,24 +71,37 @@ LIBS += -lfftw3
# --- checking boost --- # --- checking boost ---
BOOST_HEADERFILE = boost/version.hpp BOOST_HEADERFILE = boost/version.hpp
BOOST_HEADER_LOCATIONS = /opt/local/include /usr/local/include /usr/include macx|unix {
BOOST_HEADER_LOCATIONS = /opt/local/include /usr/local/include /usr/include
}
win32 {
BOOST_HEADER_LOCATIONS = "C:/Boost/include"
}
for(dir, BOOST_HEADER_LOCATIONS): isEmpty(BOOST_INCLUDE): exists($${dir}/$${BOOST_HEADERFILE}): BOOST_INCLUDE = $${dir} for(dir, BOOST_HEADER_LOCATIONS): isEmpty(BOOST_INCLUDE): exists($${dir}/$${BOOST_HEADERFILE}): BOOST_INCLUDE = $${dir}
isEmpty(BOOST_INCLUDE): message("Can't find" $${BOOST_HEADERFILE} "in" $${BOOST_HEADER_LOCATIONS}) isEmpty(BOOST_INCLUDE): message("Can't find" $${BOOST_HEADERFILE} "in" $${BOOST_HEADER_LOCATIONS})
BOOST_LIBFILES = libboost* BOOST_LIBFILES = libboost*
BOOST_LIB_LOCATIONS = /opt/local/lib /usr/local/lib /usr/lib64 /usr/lib # following check only works on *nix systems
for(dir, BOOST_LIB_LOCATIONS): isEmpty(BOOST_LIB) { macx|unix {
NumberOfSuchFiles=$$system(ls $${dir}/$${BOOST_LIBFILES} 2> /dev/null | wc -l) BOOST_LIB_LOCATIONS = /opt/local/lib /usr/local/lib /usr/lib64 /usr/lib
!isEqual(NumberOfSuchFiles, 0): BOOST_LIB = $${dir} for(dir, BOOST_LIB_LOCATIONS): isEmpty(BOOST_LIB) {
NumberOfSuchFiles=$$system(ls $${dir}/$${BOOST_LIBFILES} 2> /dev/null | wc -l)
!isEqual(NumberOfSuchFiles, 0): BOOST_LIB = $${dir}
}
}
win32 {
BOOST_LIB = "C:/Boost/lib"
} }
isEmpty(BOOST_LIB): message("Can't find" $${BOOST_LIBFILES} "in" $${BOOST_LIB_LOCATIONS}) isEmpty(BOOST_LIB): message("Can't find" $${BOOST_LIBFILES} "in" $${BOOST_LIB_LOCATIONS})
INCLUDEPATH *= $${BOOST_INCLUDE} INCLUDEPATH *= $${BOOST_INCLUDE}
LIBS *= -L$${BOOST_LIB} LIBS *= -L$${BOOST_LIB}
LIBS += -lboost_program_options -lboost_iostreams -lboost_system -lboost_signals -lboost_filesystem -lboost_regex -lboost_thread LIBS += -lboost_program_options -lboost_iostreams -lboost_system -lboost_signals -lboost_filesystem -lboost_regex -lboost_thread
# checking special case when system doesn't have libboost_thread library but have libbost_thread-mt # checking special case when system doesn't have libboost_thread library but have libboost_thread-mt
NumberOfSuchFiles=$$system(ls $${BOOST_LIB}/libboost_thread-mt* 2> /dev/null | wc -l) !win32 {
!isEqual(NumberOfSuchFiles, 0) { NumberOfSuchFiles=$$system(ls $${BOOST_LIB}/libboost_thread-mt* 2> /dev/null | wc -l)
# library libboost_thread-mt exists !isEqual(NumberOfSuchFiles, 0) {
LIBS = $$replace(LIBS, "-lboost_thread", "-lboost_thread-mt") # library libboost_thread-mt exists
LIBS = $$replace(LIBS, "-lboost_thread", "-lboost_thread-mt")
}
} }
isEmpty(GSL_INCLUDE): error("missed dependency:" $${GSL_HEADERFILE}) isEmpty(GSL_INCLUDE): error("missed dependency:" $${GSL_HEADERFILE})
......
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
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