diff --git a/CMakeLists.txt b/CMakeLists.txt index 175d3fb4781208d32be4ec16f4b6a4a3f79bfdb3..50986d0a927c0d890d300be952a458f552bb0ed8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,22 +4,35 @@ cmake_minimum_required(VERSION 2.6) # Project name project( OGS-6 ) -# Set cmake module path -SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") +# Set cmake module path +SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} + "${CMAKE_SOURCE_DIR}/scripts/cmake/cmake" + "${CMAKE_SOURCE_DIR}/scripts/cmake") +INCLUDE(GetCompilerInfoString) -# Set cmake module path -#SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeConfiguration") +# Finds +FIND_PACKAGE(OpenMP) +IF(OPENMP_FOUND) + SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}") + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") +ENDIF() ### For GNU C/CXX IF(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_COMPILER_IS_GNUCC) + get_gcc_version(GCC_VERSION) IF( NOT CMAKE_BUILD_TYPE STREQUAL "Debug" ) MESSAGE(STATUS "Set GCC release flags") - SET(CMAKE_CXX_FLAGS "-O3 -march=native -mtune=native -msse4.2 -DNDEBUG") + IF(APPLE AND GCC_VERSION VERSION_LESS "4.3" AND NOT "${CMAKE_GENERATOR}" STREQUAL "Xcode" ) + # -march=native does not work here when on normal gcc compiler + # see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33144 + SET(CMAKE_CXX_FLAGS "-O3 -mtune=native -msse4.2 -DNDEBUG") + ELSE() + SET(CMAKE_CXX_FLAGS "-O3 -march=native -mtune=native -msse4.2 -DNDEBUG") + ENDIF() ENDIF() # -g SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated -Wall -Wextra -fno-nonansi-builtins") - SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp") ADD_DEFINITIONS( -DGCC ) diff --git a/MathLib/LinAlg/Solvers/CGParallel.cpp b/MathLib/LinAlg/Solvers/CGParallel.cpp index c752961e30d9b2aaebc671dfe508f6cb0aebdbcb..bdfa4cfb32ca3967c03b9ca0b115ab1ea66b0b7c 100644 --- a/MathLib/LinAlg/Solvers/CGParallel.cpp +++ b/MathLib/LinAlg/Solvers/CGParallel.cpp @@ -7,7 +7,9 @@ #include <limits> +#ifdef _OPENMP #include <omp.h> +#endif #include "MathTools.h" #include "blas.h" diff --git a/MathLib/LinAlg/Sparse/CRSMatrixDiagPrecond.h b/MathLib/LinAlg/Sparse/CRSMatrixDiagPrecond.h index 51982a1f93e9d1b8525cd4bc5c30f8172be5156e..cce05d48ad6da4df17c730bcc5fc388472f5b4cc 100644 --- a/MathLib/LinAlg/Sparse/CRSMatrixDiagPrecond.h +++ b/MathLib/LinAlg/Sparse/CRSMatrixDiagPrecond.h @@ -1,7 +1,9 @@ #ifndef CRSMATRIXDIAGPRECOND_H #define CRSMATRIXDIAGPRECOND_H -//#include <omp.h> +#ifdef _OPENMP +#include <omp.h> +#endif #include "CRSMatrix.h" #include "sparse.h" diff --git a/MathLib/LinAlg/Sparse/amuxCRS.cpp b/MathLib/LinAlg/Sparse/amuxCRS.cpp index 99c77eafc6705704bb23b3a8035ea9a7d9fa540a..04a7528e87807bab1288429e78adacd1774ccf81 100644 --- a/MathLib/LinAlg/Sparse/amuxCRS.cpp +++ b/MathLib/LinAlg/Sparse/amuxCRS.cpp @@ -7,7 +7,9 @@ #include "amuxCRS.h" #include <cstddef> +#ifdef _OPENMP #include <omp.h> +#endif #ifdef HAVE_PTHREADS #include <pthread.h> #endif diff --git a/MathLib/MathTools.h b/MathLib/MathTools.h index 4a9d2b804f9272a0c531be13973088508f023d34..ea6109150ae3bd4970c703f83c3dc57be3b9eaff 100644 --- a/MathLib/MathTools.h +++ b/MathLib/MathTools.h @@ -12,7 +12,9 @@ #include <cmath> #include <limits> +#ifdef _OPENMP #include <omp.h> +#endif #include "Point.h" diff --git a/SimpleTests/MatrixTests/MatMult.cpp b/SimpleTests/MatrixTests/MatMult.cpp index 62c76e74d84b0888a961b29b004d6091e23b3270..6266c0365f2048345493b7d7e466fb38bbdb8121 100644 --- a/SimpleTests/MatrixTests/MatMult.cpp +++ b/SimpleTests/MatrixTests/MatMult.cpp @@ -2,7 +2,6 @@ #include <iostream> #include <cmath> #include <limits> -#include <omp.h> #include <cstdlib> #include "sparse.h" #include "LinAlg/Sparse/CRSMatrix.h" @@ -11,6 +10,10 @@ #include "RunTimeTimer.h" #include "CPUTimeTimer.h" +#ifdef _OPENMP +#include <omp.h> +#endif + int main(int argc, char *argv[]) { if (argc < 4) { diff --git a/SimpleTests/SolverTests/BiCGStabDiagPrecond.cpp b/SimpleTests/SolverTests/BiCGStabDiagPrecond.cpp index 5bdd39217dd510daf5bf18265d41c98c183d0cc1..43cf9cc247f70d2e023cde62af3239f7c495f869 100644 --- a/SimpleTests/SolverTests/BiCGStabDiagPrecond.cpp +++ b/SimpleTests/SolverTests/BiCGStabDiagPrecond.cpp @@ -2,7 +2,6 @@ #include <iostream> #include <cmath> #include <cstdlib> -#include <omp.h> #include "LinAlg/Solvers/BiCGStab.h" #include "LinAlg/Sparse/CRSMatrixDiagPrecond.h" #include "sparse.h" @@ -10,6 +9,10 @@ #include "RunTimeTimer.h" #include "CPUTimeTimer.h" +#ifdef _OPENMP +#include <omp.h> +#endif + int main(int argc, char *argv[]) { if (argc != 4) { diff --git a/SimpleTests/SolverTests/ConjugateGradientDiagonalPreconditioned.cpp b/SimpleTests/SolverTests/ConjugateGradientDiagonalPreconditioned.cpp index d533628c4194028a1f4227372053dd540a065740..30700aa9524c204d1043504c44ab8ca85d99ce1c 100644 --- a/SimpleTests/SolverTests/ConjugateGradientDiagonalPreconditioned.cpp +++ b/SimpleTests/SolverTests/ConjugateGradientDiagonalPreconditioned.cpp @@ -2,7 +2,6 @@ #include <iostream> #include <cmath> #include <cstdlib> -#include <omp.h> #include "LinAlg/Solvers/CG.h" #include "LinAlg/Sparse/CRSMatrixDiagPrecond.h" #include "sparse.h" @@ -10,6 +9,10 @@ #include "RunTimeTimer.h" #include "CPUTimeTimer.h" +#ifdef _OPENMP +#include <omp.h> +#endif + int main(int argc, char *argv[]) { if (argc != 4) { diff --git a/SimpleTests/SolverTests/ConjugateGradientUnpreconditioned.cpp b/SimpleTests/SolverTests/ConjugateGradientUnpreconditioned.cpp index 1f0c4cb92b1fc5ea10b796b4d998ca64e60ac861..96ead4200cfefbc8748f32f50f0a11acc05b01fa 100644 --- a/SimpleTests/SolverTests/ConjugateGradientUnpreconditioned.cpp +++ b/SimpleTests/SolverTests/ConjugateGradientUnpreconditioned.cpp @@ -1,12 +1,15 @@ #include <fstream> #include <iostream> -#include <omp.h> #include "LinAlg/Solvers/CG.h" #include "LinAlg/Sparse/CRSMatrix.h" #include "sparse.h" #include "vector_io.h" //#include "timeMeasurement.h" +#ifdef _OPENMP +#include <omp.h> +#endif + int main(int argc, char *argv[]) { (void) argc; diff --git a/cmake/CleanDirectoryList.cmake b/scripts/cmake/cmake/CleanDirectoryList.cmake similarity index 100% rename from cmake/CleanDirectoryList.cmake rename to scripts/cmake/cmake/CleanDirectoryList.cmake diff --git a/cmake/CppcheckTargets.cmake b/scripts/cmake/cmake/CppcheckTargets.cmake similarity index 100% rename from cmake/CppcheckTargets.cmake rename to scripts/cmake/cmake/CppcheckTargets.cmake diff --git a/cmake/DoxygenTargets.cmake b/scripts/cmake/cmake/DoxygenTargets.cmake similarity index 100% rename from cmake/DoxygenTargets.cmake rename to scripts/cmake/cmake/DoxygenTargets.cmake diff --git a/cmake/DoxygenTargets.doxyfile.in b/scripts/cmake/cmake/DoxygenTargets.doxyfile.in similarity index 100% rename from cmake/DoxygenTargets.doxyfile.in rename to scripts/cmake/cmake/DoxygenTargets.doxyfile.in diff --git a/cmake/EnableExtraCompilerWarnings.cmake b/scripts/cmake/cmake/EnableExtraCompilerWarnings.cmake similarity index 100% rename from cmake/EnableExtraCompilerWarnings.cmake rename to scripts/cmake/cmake/EnableExtraCompilerWarnings.cmake diff --git a/cmake/EnableProfiling.cmake b/scripts/cmake/cmake/EnableProfiling.cmake similarity index 100% rename from cmake/EnableProfiling.cmake rename to scripts/cmake/cmake/EnableProfiling.cmake diff --git a/cmake/FileCopyTargets.cmake b/scripts/cmake/cmake/FileCopyTargets.cmake similarity index 100% rename from cmake/FileCopyTargets.cmake rename to scripts/cmake/cmake/FileCopyTargets.cmake diff --git a/cmake/FindBLAS.cmake b/scripts/cmake/cmake/FindBLAS.cmake similarity index 100% rename from cmake/FindBLAS.cmake rename to scripts/cmake/cmake/FindBLAS.cmake diff --git a/cmake/FindGDB.cmake b/scripts/cmake/cmake/FindGDB.cmake similarity index 100% rename from cmake/FindGDB.cmake rename to scripts/cmake/cmake/FindGDB.cmake diff --git a/cmake/FindLAPACK.cmake b/scripts/cmake/cmake/FindLAPACK.cmake similarity index 100% rename from cmake/FindLAPACK.cmake rename to scripts/cmake/cmake/FindLAPACK.cmake diff --git a/cmake/FindLAPACKLibs.cmake b/scripts/cmake/cmake/FindLAPACKLibs.cmake similarity index 100% rename from cmake/FindLAPACKLibs.cmake rename to scripts/cmake/cmake/FindLAPACKLibs.cmake diff --git a/cmake/FindMSVCRedist.cmake b/scripts/cmake/cmake/FindMSVCRedist.cmake similarity index 100% rename from cmake/FindMSVCRedist.cmake rename to scripts/cmake/cmake/FindMSVCRedist.cmake diff --git a/cmake/FindOpenSG.cmake b/scripts/cmake/cmake/FindOpenSG.cmake similarity index 100% rename from cmake/FindOpenSG.cmake rename to scripts/cmake/cmake/FindOpenSG.cmake diff --git a/cmake/FindOpenSGSupportlibs.cmake b/scripts/cmake/cmake/FindOpenSGSupportlibs.cmake similarity index 100% rename from cmake/FindOpenSGSupportlibs.cmake rename to scripts/cmake/cmake/FindOpenSGSupportlibs.cmake diff --git a/cmake/FindVRPN.cmake b/scripts/cmake/cmake/FindVRPN.cmake similarity index 100% rename from cmake/FindVRPN.cmake rename to scripts/cmake/cmake/FindVRPN.cmake diff --git a/cmake/Findcppcheck.cmake b/scripts/cmake/cmake/Findcppcheck.cmake similarity index 100% rename from cmake/Findcppcheck.cmake rename to scripts/cmake/cmake/Findcppcheck.cmake diff --git a/cmake/Findcppcheck.cpp b/scripts/cmake/cmake/Findcppcheck.cpp similarity index 100% rename from cmake/Findcppcheck.cpp rename to scripts/cmake/cmake/Findcppcheck.cpp diff --git a/cmake/Findcutil.cmake b/scripts/cmake/cmake/Findcutil.cmake similarity index 100% rename from cmake/Findcutil.cmake rename to scripts/cmake/cmake/Findcutil.cmake diff --git a/cmake/Findquatlib.cmake b/scripts/cmake/cmake/Findquatlib.cmake similarity index 100% rename from cmake/Findquatlib.cmake rename to scripts/cmake/cmake/Findquatlib.cmake diff --git a/cmake/GetCPUDetails.cmake b/scripts/cmake/cmake/GetCPUDetails.cmake similarity index 100% rename from cmake/GetCPUDetails.cmake rename to scripts/cmake/cmake/GetCPUDetails.cmake diff --git a/cmake/GetCompilerInfoString.cmake b/scripts/cmake/cmake/GetCompilerInfoString.cmake similarity index 100% rename from cmake/GetCompilerInfoString.cmake rename to scripts/cmake/cmake/GetCompilerInfoString.cmake diff --git a/cmake/GetGitRevisionDescription.cmake b/scripts/cmake/cmake/GetGitRevisionDescription.cmake similarity index 100% rename from cmake/GetGitRevisionDescription.cmake rename to scripts/cmake/cmake/GetGitRevisionDescription.cmake diff --git a/cmake/GetGitRevisionDescription.cmake.in b/scripts/cmake/cmake/GetGitRevisionDescription.cmake.in similarity index 100% rename from cmake/GetGitRevisionDescription.cmake.in rename to scripts/cmake/cmake/GetGitRevisionDescription.cmake.in diff --git a/cmake/LICENSE_1_0.txt b/scripts/cmake/cmake/LICENSE_1_0.txt similarity index 100% rename from cmake/LICENSE_1_0.txt rename to scripts/cmake/cmake/LICENSE_1_0.txt diff --git a/cmake/LibFindMacros.cmake b/scripts/cmake/cmake/LibFindMacros.cmake similarity index 100% rename from cmake/LibFindMacros.cmake rename to scripts/cmake/cmake/LibFindMacros.cmake diff --git a/cmake/Licensing.cmake b/scripts/cmake/cmake/Licensing.cmake similarity index 100% rename from cmake/Licensing.cmake rename to scripts/cmake/cmake/Licensing.cmake diff --git a/cmake/ListCombinations.cmake b/scripts/cmake/cmake/ListCombinations.cmake similarity index 100% rename from cmake/ListCombinations.cmake rename to scripts/cmake/cmake/ListCombinations.cmake diff --git a/cmake/ListFilter.cmake b/scripts/cmake/cmake/ListFilter.cmake similarity index 100% rename from cmake/ListFilter.cmake rename to scripts/cmake/cmake/ListFilter.cmake diff --git a/cmake/MSVCMultipleProcessCompile.cmake b/scripts/cmake/cmake/MSVCMultipleProcessCompile.cmake similarity index 100% rename from cmake/MSVCMultipleProcessCompile.cmake rename to scripts/cmake/cmake/MSVCMultipleProcessCompile.cmake diff --git a/cmake/MSVCStaticRuntime.cmake b/scripts/cmake/cmake/MSVCStaticRuntime.cmake similarity index 100% rename from cmake/MSVCStaticRuntime.cmake rename to scripts/cmake/cmake/MSVCStaticRuntime.cmake diff --git a/cmake/MSVCVerboseLinking.cmake b/scripts/cmake/cmake/MSVCVerboseLinking.cmake similarity index 100% rename from cmake/MSVCVerboseLinking.cmake rename to scripts/cmake/cmake/MSVCVerboseLinking.cmake diff --git a/cmake/OptionRequires.cmake b/scripts/cmake/cmake/OptionRequires.cmake similarity index 100% rename from cmake/OptionRequires.cmake rename to scripts/cmake/cmake/OptionRequires.cmake diff --git a/cmake/PrintVariables.cmake b/scripts/cmake/cmake/PrintVariables.cmake similarity index 100% rename from cmake/PrintVariables.cmake rename to scripts/cmake/cmake/PrintVariables.cmake diff --git a/cmake/ProcessorCount.cmake b/scripts/cmake/cmake/ProcessorCount.cmake similarity index 100% rename from cmake/ProcessorCount.cmake rename to scripts/cmake/cmake/ProcessorCount.cmake diff --git a/cmake/README.md b/scripts/cmake/cmake/README.md similarity index 100% rename from cmake/README.md rename to scripts/cmake/cmake/README.md diff --git a/cmake/ResetConfigurations.cmake b/scripts/cmake/cmake/ResetConfigurations.cmake similarity index 100% rename from cmake/ResetConfigurations.cmake rename to scripts/cmake/cmake/ResetConfigurations.cmake diff --git a/cmake/SetDefaultBuildType.cmake b/scripts/cmake/cmake/SetDefaultBuildType.cmake similarity index 100% rename from cmake/SetDefaultBuildType.cmake rename to scripts/cmake/cmake/SetDefaultBuildType.cmake diff --git a/cmake/UseBackportedModules.cmake b/scripts/cmake/cmake/UseBackportedModules.cmake similarity index 100% rename from cmake/UseBackportedModules.cmake rename to scripts/cmake/cmake/UseBackportedModules.cmake diff --git a/cmake/WarningDev.cmake b/scripts/cmake/cmake/WarningDev.cmake similarity index 100% rename from cmake/WarningDev.cmake rename to scripts/cmake/cmake/WarningDev.cmake diff --git a/cmake/cmake-2.8.0-modules/features/SelectLibraryConfigurations.cmake b/scripts/cmake/cmake/cmake-2.8.0-modules/features/SelectLibraryConfigurations.cmake similarity index 100% rename from cmake/cmake-2.8.0-modules/features/SelectLibraryConfigurations.cmake rename to scripts/cmake/cmake/cmake-2.8.0-modules/features/SelectLibraryConfigurations.cmake diff --git a/cmake/cmake-2.8.1-modules/patchctestbug10149/CTest.cmake b/scripts/cmake/cmake/cmake-2.8.1-modules/patchctestbug10149/CTest.cmake similarity index 100% rename from cmake/cmake-2.8.1-modules/patchctestbug10149/CTest.cmake rename to scripts/cmake/cmake/cmake-2.8.1-modules/patchctestbug10149/CTest.cmake diff --git a/cmake/cmake-2.8.1-modules/patchctestbug10149/CTestScriptMode.cmake b/scripts/cmake/cmake/cmake-2.8.1-modules/patchctestbug10149/CTestScriptMode.cmake similarity index 100% rename from cmake/cmake-2.8.1-modules/patchctestbug10149/CTestScriptMode.cmake rename to scripts/cmake/cmake/cmake-2.8.1-modules/patchctestbug10149/CTestScriptMode.cmake diff --git a/cmake/cmake-2.8.1-modules/patchctestbug10149/CTestTargets.cmake b/scripts/cmake/cmake/cmake-2.8.1-modules/patchctestbug10149/CTestTargets.cmake similarity index 100% rename from cmake/cmake-2.8.1-modules/patchctestbug10149/CTestTargets.cmake rename to scripts/cmake/cmake/cmake-2.8.1-modules/patchctestbug10149/CTestTargets.cmake diff --git a/cmake/cmake-2.8.3-modules/FixWinInstallPrefix.cmake b/scripts/cmake/cmake/cmake-2.8.3-modules/FixWinInstallPrefix.cmake similarity index 100% rename from cmake/cmake-2.8.3-modules/FixWinInstallPrefix.cmake rename to scripts/cmake/cmake/cmake-2.8.3-modules/FixWinInstallPrefix.cmake diff --git a/cmake/cmake-2.8.3-modules/autoinclude.cmake b/scripts/cmake/cmake/cmake-2.8.3-modules/autoinclude.cmake similarity index 100% rename from cmake/cmake-2.8.3-modules/autoinclude.cmake rename to scripts/cmake/cmake/cmake-2.8.3-modules/autoinclude.cmake diff --git a/cmake/cmake-2.8.4-modules/ImproveEclipseGCCErrors.cmake b/scripts/cmake/cmake/cmake-2.8.4-modules/ImproveEclipseGCCErrors.cmake similarity index 100% rename from cmake/cmake-2.8.4-modules/ImproveEclipseGCCErrors.cmake rename to scripts/cmake/cmake/cmake-2.8.4-modules/ImproveEclipseGCCErrors.cmake diff --git a/cmake/cmake-2.8.4-modules/autoinclude.cmake b/scripts/cmake/cmake/cmake-2.8.4-modules/autoinclude.cmake similarity index 100% rename from cmake/cmake-2.8.4-modules/autoinclude.cmake rename to scripts/cmake/cmake/cmake-2.8.4-modules/autoinclude.cmake diff --git a/cmake/cmake-2.8.4-modules/boost/FindBoost.cmake b/scripts/cmake/cmake/cmake-2.8.4-modules/boost/FindBoost.cmake similarity index 100% rename from cmake/cmake-2.8.4-modules/boost/FindBoost.cmake rename to scripts/cmake/cmake/cmake-2.8.4-modules/boost/FindBoost.cmake diff --git a/cmake/cmake-2.9.0-modules/RequireOutOfSourceBuild.cmake b/scripts/cmake/cmake/cmake-2.9.0-modules/RequireOutOfSourceBuild.cmake similarity index 100% rename from cmake/cmake-2.9.0-modules/RequireOutOfSourceBuild.cmake rename to scripts/cmake/cmake/cmake-2.9.0-modules/RequireOutOfSourceBuild.cmake diff --git a/cmake/cmake-2.9.0-modules/autoinclude.cmake b/scripts/cmake/cmake/cmake-2.9.0-modules/autoinclude.cmake similarity index 100% rename from cmake/cmake-2.9.0-modules/autoinclude.cmake rename to scripts/cmake/cmake/cmake-2.9.0-modules/autoinclude.cmake diff --git a/cmake/module-docs/Example-FindMyPackage.cmake b/scripts/cmake/cmake/module-docs/Example-FindMyPackage.cmake similarity index 100% rename from cmake/module-docs/Example-FindMyPackage.cmake rename to scripts/cmake/cmake/module-docs/Example-FindMyPackage.cmake diff --git a/cmake/module-docs/Example-FindMySimplePackage.cmake b/scripts/cmake/cmake/module-docs/Example-FindMySimplePackage.cmake similarity index 100% rename from cmake/module-docs/Example-FindMySimplePackage.cmake rename to scripts/cmake/cmake/module-docs/Example-FindMySimplePackage.cmake diff --git a/cmake/package-licensing/Boost.cmake b/scripts/cmake/cmake/package-licensing/Boost.cmake similarity index 100% rename from cmake/package-licensing/Boost.cmake rename to scripts/cmake/cmake/package-licensing/Boost.cmake diff --git a/cmake/package-licensing/Eigen.cmake b/scripts/cmake/cmake/package-licensing/Eigen.cmake similarity index 100% rename from cmake/package-licensing/Eigen.cmake rename to scripts/cmake/cmake/package-licensing/Eigen.cmake diff --git a/cmake/package-licensing/Qt-LGPL.cmake b/scripts/cmake/cmake/package-licensing/Qt-LGPL.cmake similarity index 100% rename from cmake/package-licensing/Qt-LGPL.cmake rename to scripts/cmake/cmake/package-licensing/Qt-LGPL.cmake diff --git a/scripts/setup/README.md b/scripts/setup/README.md new file mode 100644 index 0000000000000000000000000000000000000000..405e4e9ed7788b7891aed517f05ee3d044715d16 --- /dev/null +++ b/scripts/setup/README.md @@ -0,0 +1,19 @@ +# Setup scripts for Windows # + +## setup.sh ## + +If you are on Windows you can run `setup.sh` on the *Git Bash* to setup all required third party libraries for OGS (including the Data Explorer). Make also sure you have working Internet connection. For more details have a look on the [devguide][dev]. + +The following options are available: + +- `-a [x32|x64]` to build for either 32- or 64-bits +- `-s` to build Qt with Oracle SQL bindings + +A typical call would look like this: + + cd /scripts/setup + ./setup.sh -a x64 -d + +The compilation of the libraries will take some time. Make sure to set the Qt environment variables as described in the [devguide][dev]. + +[dev]: (http://ufz.github.com/devguide/win-prerequisites/). \ No newline at end of file