Skip to content

Commit

Permalink
Merge branch 'master' into feature/bruker_precursor_2
Browse files Browse the repository at this point in the history
  • Loading branch information
chambm authored Jan 15, 2025
2 parents 924b415 + 341bee6 commit 3587b11
Show file tree
Hide file tree
Showing 299 changed files with 7,908 additions and 3,587 deletions.
6 changes: 3 additions & 3 deletions Jamroot.jam
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ local default_libraries_path = "./libraries" ;
local libraries_path = [ MATCH --libraries-path=(.*) : [ modules.peek : ARGV ] ] ;
libraries_path ?= $(default_libraries_path) ; # set default path in absence of command-line path

local default_boost_src = "$(libraries_path)/boost_1_76_0" ;
local default_boost_src = "$(libraries_path)/boost_1_86_0" ;
local boost_src = [ MATCH --boost-src=(.*) : [ modules.peek : ARGV ] ] ;
boost_src ?= $(default_boost_src) ; # set default path in absence of command-line path

Expand Down Expand Up @@ -388,6 +388,7 @@ project pwiz
<toolset>gcc:<define>_GLIBCXX_USE_CXX11_ABI=0

# set standard to C++14
<toolset>msvc:<cxxflags>"/std:c++14"
<toolset>gcc:<cxxflags>-std=c++14
<toolset>darwin:<cxxflags>-std=c++14
<toolset>clang:<cxxflags>-std=c++14
Expand Down Expand Up @@ -587,7 +588,7 @@ path-constant BOOST_SOURCE : $(boost_src) ;
path-constant ZLIB_SOURCE : $(zlib_src) ;
path-constant GD_SOURCE : $(PWIZ_LIBRARIES_PATH)/libgd-2.1.0alpha ;
path-constant PNG_SOURCE : $(PWIZ_LIBRARIES_PATH)/libpng-1.5.6 ;
path-constant FREETYPE_SOURCE : $(PWIZ_LIBRARIES_PATH)/freetype-2.4.7 ;
path-constant FREETYPE_SOURCE : $(PWIZ_LIBRARIES_PATH)/freetype-VER-2-13-3 ;
path-constant EXPAT_SOURCE : $(PWIZ_LIBRARIES_PATH)/expat-2.0.1 ;

using ext-boost : $(BOOST_VERSION:J=.) : $(BOOST_SOURCE) : <zlib-src-location>$(ZLIB_SOURCE) ;
Expand Down Expand Up @@ -1731,7 +1732,6 @@ constant .common-sources :
$(.common-src-exclusions)

$(PWIZ_ROOT_PATH)/Jamroot.jam
$(PWIZ_ROOT_PATH)/NOTICE
$(PWIZ_ROOT_PATH)/LICENSE
$(PWIZ_ROOT_PATH)/quickbuild.bat
$(PWIZ_ROOT_PATH)/quickbuild.sh
Expand Down
3 changes: 2 additions & 1 deletion clean.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ IF EXIST libraries\boost_1_54_0 rmdir /s /q libraries\boost_1_54_0
IF EXIST libraries\boost_1_56_0 rmdir /s /q libraries\boost_1_56_0
IF EXIST libraries\boost_1_67_0 rmdir /s /q libraries\boost_1_67_0
IF EXIST libraries\boost_1_76_0 rmdir /s /q libraries\boost_1_76_0
IF EXIST libraries\boost_1_86_0 rmdir /s /q libraries\boost_1_86_0
IF EXIST libraries\gd-2.0.33 rmdir /s /q libraries\gd-2.0.33
IF EXIST libraries\zlib-1.2.3 rmdir /s /q libraries\zlib-1.2.3
IF EXIST libraries\libgd-2.1.0alpha rmdir /s /q libraries\libgd-2.1.0alpha
IF EXIST libraries\libpng-1.5.6 rmdir /s /q libraries\libpng-1.5.6
IF EXIST libraries\freetype-2.4.7 rmdir /s /q libraries\freetype-2.4.7
IF EXIST libraries\freetype-VER-2-13-3 rmdir /s /q libraries\freetype-VER-2-13-3
IF EXIST libraries\hdf5-1.8.7 rmdir /s /q libraries\hdf5-1.8.7
IF EXIST libraries\fftw-3.1.2 rmdir /s /q libraries\fftw-3.1.2
IF EXIST libraries\expat-2.0.1 rmdir /s /q libraries\expat-2.0.1
Expand Down
2 changes: 1 addition & 1 deletion clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [ -d libraries/gd-2.0.33 ]; then rm -fr libraries/gd-2.0.33; fi;
if [ -d libraries/zlib-1.2.3 ]; then rm -fr libraries/zlib-1.2.3; fi;
if [ -d libraries/libgd-2.1.0alpha ]; then rm -fr libraries/libgd-2.1.0alpha; fi;
if [ -d libraries/libpng-1.5.6 ]; then rm -fr libraries/libpng-1.5.6; fi;
if [ -d libraries/freetype-2.4.7 ]; then rm -fr libraries/freetype-2.4.7; fi;
if [ -d libraries/freetype-VER-2-13-3 ]; then rm -fr libraries/freetype-VER-2-13-3; fi;
if [ -d libraries/hdf5-1.8.7 ]; then rm -fr libraries/hdf5-1.8.7; fi;
if [ -d libraries/fftw-3.1.2 ]; then rm -fr libraries/fftw-3.1.2; fi;
if [ -d libraries/expat-2.0.1 ]; then rm -fr libraries/expat-2.0.1; fi;
Expand Down
Binary file not shown.
4 changes: 1 addition & 3 deletions libraries/boost_aux/tools/bcp/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@

exe bcp
:
add_path.cpp bcp_imp.cpp copy_path.cpp file_types.cpp
add_dependent_lib.cpp add_path.cpp bcp_imp.cpp copy_path.cpp file_types.cpp
fileview.cpp main.cpp path_operations.cpp scan_cvs_path.cpp
licence_info.cpp scan_licence.cpp output_licence_info.cpp
/boost/filesystem//boost_filesystem
/boost/regex//boost_regex
/boost/test//boost_prg_exec_monitor
:
<define>BOOST_REGEX_NO_LIB=1
:
release
;
Expand Down
Loading

0 comments on commit 3587b11

Please sign in to comment.