Changes in / [4c9101:a91710]
- Files:
-
- 54 edited
Legend:
- Unmodified
- Added
- Removed
-
LinearAlgebra/src/LinearAlgebra/Makefile.am
r4c9101 ra91710 2 2 # Also indentation by a single tab 3 3 4 INCLUDES = -I$(top_srcdir)/src5 6 4 AM_LDFLAGS = -ldl 7 AM_CPPFLAGS = $(BOOST_CPPFLAGS) ${CodePatterns_CFLAGS}5 AM_CPPFLAGS = -I$(top_srcdir)/src $(BOOST_CPPFLAGS) ${CodePatterns_CFLAGS} 8 6 9 7 LINALGSOURCE = \ -
LinearAlgebra/src/unittests/Makefile.am
r4c9101 ra91710 2 2 # Also indentation by a single tab 3 3 4 INCLUDES = -I$(top_srcdir)/src/LinearAlgebra5 6 4 AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl 7 AM_CPPFLAGS = $(CPPUNIT_CFLAGS) $(BOOST_CPPFLAGS) ${CodePatterns_CFLAGS}5 AM_CPPFLAGS = -I$(top_srcdir)/src/LinearAlgebra $(CPPUNIT_CFLAGS) $(BOOST_CPPFLAGS) ${CodePatterns_CFLAGS} 8 6 9 7 if CONDCPPUNIT … … 95 93 VectorUnitTest.cpp \ 96 94 VectorUnitTest.hpp 97 VectorUnitTest_LDADD = ${GSLLIBS} 95 VectorUnitTest_LDADD = ${GSLLIBS} \ 96 $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS) 98 97 99 98 VectorSetUnitTest_SOURCES = UnitTestMain.cpp \ -
configure.ac
r4c9101 ra91710 13 13 # color-tests: us coloring to indicate success/failure when available 14 14 # tar-pax: use newer tar implementation with longer filename (>99 chars) 15 AM_INIT_AUTOMAKE([dist-bzip2 1.5 parallel-tests color-tests tar-pax ])15 AM_INIT_AUTOMAKE([dist-bzip2 1.5 parallel-tests color-tests tar-pax subdir-objects]) 16 16 17 17 # Checks for programs. -
m4/boost.m4
r4c9101 ra91710 1 1 # boost.m4: Locate Boost headers and libraries for autoconf-based projects. 2 # Copyright (C) 2007 , 2008, 2009, 2010, 2011Benoit Sigoure <tsuna@lrde.epita.fr>2 # Copyright (C) 2007-2011, 2014 Benoit Sigoure <tsuna@lrde.epita.fr> 3 3 # 4 4 # This program is free software: you can redistribute it and/or modify … … 23 23 24 24 m4_define([_BOOST_SERIAL], [m4_translit([ 25 # serial 1625 # serial 22 26 26 ], [# 27 27 ], [])]) … … 60 60 # value of any macro. 61 61 m4_define([_BOOST_SED_CPP], 62 [AC_LANG_PREPROC_REQUIRE()dnl 62 [AC_LANG_PUSH([C++])dnl 63 AC_LANG_PREPROC_REQUIRE()dnl 63 64 AC_REQUIRE([AC_PROG_SED])dnl 64 65 AC_LANG_CONFTEST([AC_LANG_SOURCE([[$2]])]) … … 78 79 [$4]) 79 80 rm -rf conftest* 80 ])# AC_EGREP_CPP 81 AC_LANG_POP([C++])dnl 82 ])# _BOOST_SED_CPP 81 83 82 84 … … 135 137 # If the user provided a value to --with-boost, use it and only it. 136 138 case $with_boost in #( 137 ''|yes) set x '' /usr/local/include /usr/include \ 138 /opt/local/include /opt/include \ 139 C:/Boost/include;; #( 139 ''|yes) set x '' /opt/local/include /usr/local/include /opt/include \ 140 /usr/include C:/Boost/include;; #( 140 141 *) set x "$with_boost/include" "$with_boost";; 141 142 esac … … 223 224 ])# BOOST_REQUIRE 224 225 226 225 227 # BOOST_STATIC() 226 228 # -------------- … … 229 231 AC_DEFUN([BOOST_STATIC], 230 232 [AC_ARG_ENABLE([static-boost], 231 [A C_HELP_STRING([--enable-static-boost],233 [AS_HELP_STRING([--enable-static-boost], 232 234 [Prefer the static boost libraries over the shared ones [no]])], 233 235 [enable_static_boost=yes], 234 236 [enable_static_boost=no])])# BOOST_STATIC 237 235 238 236 239 # BOOST_FIND_HEADER([HEADER-NAME], [ACTION-IF-NOT-FOUND], [ACTION-IF-FOUND]) … … 266 269 267 270 268 # BOOST_FIND_LIB([LIB-NAME], [PREFERRED-RT-OPT], [HEADER-NAME], [CXX-TEST], 269 # [CXX-PROLOGUE]) 270 # ------------------------------------------------------------------------- 271 # Look for the Boost library LIB-NAME (e.g., LIB-NAME = `thread', for 272 # libboost_thread). Check that HEADER-NAME works and check that 273 # libboost_LIB-NAME can link with the code CXX-TEST. The optional argument 274 # CXX-PROLOGUE can be used to include some C++ code before the `main' 275 # function. 271 # BOOST_FIND_LIBS([COMPONENT-NAME], [CANDIDATE-LIB-NAMES], 272 # [PREFERRED-RT-OPT], [HEADER-NAME], [CXX-TEST], 273 # [CXX-PROLOGUE]) 274 # -------------------------------------------------------------- 275 # Look for the Boost library COMPONENT-NAME (e.g., `thread', for 276 # libboost_thread) under the possible CANDIDATE-LIB-NAMES (e.g., 277 # "thread_win32 thread"). Check that HEADER-NAME works and check that 278 # libboost_LIB-NAME can link with the code CXX-TEST. The optional 279 # argument CXX-PROLOGUE can be used to include some C++ code before 280 # the `main' function. 276 281 # 277 282 # Invokes BOOST_FIND_HEADER([HEADER-NAME]) (see above). … … 287 292 # ... If you want to make sure you have a specific version of Boost 288 293 # (eg, >= 1.33) you *must* invoke BOOST_REQUIRE before this macro. 289 AC_DEFUN([BOOST_FIND_LIB ],294 AC_DEFUN([BOOST_FIND_LIBS], 290 295 [AC_REQUIRE([BOOST_REQUIRE])dnl 291 296 AC_REQUIRE([_BOOST_FIND_COMPILER_TAG])dnl … … 301 306 AS_VAR_PUSHDEF([Boost_lib_LDPATH], [boost_cv_lib_$1_LDPATH])dnl 302 307 AS_VAR_PUSHDEF([Boost_lib_LIBS], [boost_cv_lib_$1_LIBS])dnl 303 BOOST_FIND_HEADER([$ 3])308 BOOST_FIND_HEADER([$4]) 304 309 boost_save_CPPFLAGS=$CPPFLAGS 305 310 CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" 306 # Now let's try to find the library. The algorithm is as follows: first look307 # for a given library name according to the user's PREFERRED-RT-OPT. For each308 # library name, we prefer to use the ones that carry the tag (toolset name).309 # Each library is searched through the various standard paths were Boost is310 # usually installed. If we can't find the standard variants, we try to311 # enforce -mt (for instance on MacOSX, libboost_threads.dylib doesn't exist312 # but there's -obviously- libboost_threads-mt.dylib).313 311 AC_CACHE_CHECK([for the Boost $1 library], [Boost_lib], 314 [Boost_lib=no 315 case "$2" in #( 316 mt | mt-) boost_mt=-mt; boost_rtopt=;; #( 317 mt* | mt-*) boost_mt=-mt; boost_rtopt=`expr "X$2" : 'Xmt-*\(.*\)'`;; #( 318 *) boost_mt=; boost_rtopt=$2;; 312 [_BOOST_FIND_LIBS($@)]) 313 case $Boost_lib in #( 314 (no) _AC_MSG_LOG_CONFTEST 315 AC_MSG_ERROR([cannot find the flags to link with Boost $1]) 316 ;; 317 esac 318 AC_SUBST(AS_TR_CPP([BOOST_$1_LDFLAGS]), [$Boost_lib_LDFLAGS])dnl 319 AC_SUBST(AS_TR_CPP([BOOST_$1_LDPATH]), [$Boost_lib_LDPATH])dnl 320 AC_SUBST([BOOST_LDPATH], [$Boost_lib_LDPATH])dnl 321 AC_SUBST(AS_TR_CPP([BOOST_$1_LIBS]), [$Boost_lib_LIBS])dnl 322 CPPFLAGS=$boost_save_CPPFLAGS 323 AS_VAR_POPDEF([Boost_lib])dnl 324 AS_VAR_POPDEF([Boost_lib_LDFLAGS])dnl 325 AS_VAR_POPDEF([Boost_lib_LDPATH])dnl 326 AS_VAR_POPDEF([Boost_lib_LIBS])dnl 327 AC_LANG_POP([C++])dnl 328 fi 329 ]) 330 331 332 # BOOST_FIND_LIB([LIB-NAME], 333 # [PREFERRED-RT-OPT], [HEADER-NAME], [CXX-TEST], 334 # [CXX-PROLOGUE]) 335 # -------------------------------------------------------------- 336 # Backward compatibility wrapper for BOOST_FIND_LIBS. 337 AC_DEFUN([BOOST_FIND_LIB], 338 [BOOST_FIND_LIBS([$1], $@)]) 339 340 341 # _BOOST_FIND_LIBS([LIB-NAME], [CANDIDATE-LIB-NAMES], 342 # [PREFERRED-RT-OPT], [HEADER-NAME], [CXX-TEST], 343 # [CXX-PROLOGUE]) 344 # -------------------------------------------------------------- 345 # Real implementation of BOOST_FIND_LIBS: rely on these local macros: 346 # Boost_lib, Boost_lib_LDFLAGS, Boost_lib_LDPATH, Boost_lib_LIBS 347 # 348 # The algorithm is as follows: first look for a given library name 349 # according to the user's PREFERRED-RT-OPT. For each library name, we 350 # prefer to use the ones that carry the tag (toolset name). Each 351 # library is searched through the various standard paths were Boost is 352 # usually installed. If we can't find the standard variants, we try 353 # to enforce -mt (for instance on MacOSX, libboost_thread.dylib 354 # doesn't exist but there's -obviously- libboost_thread-mt.dylib). 355 AC_DEFUN([_BOOST_FIND_LIBS], 356 [Boost_lib=no 357 case "$3" in #( 358 (mt | mt-) boost_mt=-mt; boost_rtopt=;; #( 359 (mt* | mt-*) boost_mt=-mt; boost_rtopt=`expr "X$3" : 'Xmt-*\(.*\)'`;; #( 360 (*) boost_mt=; boost_rtopt=$3;; 319 361 esac 320 362 if test $enable_static_boost = yes; then … … 323 365 # Find the proper debug variant depending on what we've been asked to find. 324 366 case $boost_rtopt in #( 325 *d*) boost_rt_d=$boost_rtopt;; #(326 *[[sgpn]]*) # Insert the `d' at the right place (in between `sg' and `pn')367 (*d*) boost_rt_d=$boost_rtopt;; #( 368 (*[[sgpn]]*) # Insert the `d' at the right place (in between `sg' and `pn') 327 369 boost_rt_d=`echo "$boost_rtopt" | sed 's/\(s*g*\)\(p*n*\)/\1\2/'`;; #( 328 *) boost_rt_d='-d';;370 (*) boost_rt_d='-d';; 329 371 esac 330 372 # If the PREFERRED-RT-OPT are not empty, prepend a `-'. … … 337 379 boost_save_ac_objext=$ac_objext 338 380 # Generate the test file. 339 AC_LANG_CONFTEST([AC_LANG_PROGRAM([#include <$ 3>340 $ 5], [$4])])381 AC_LANG_CONFTEST([AC_LANG_PROGRAM([#include <$4> 382 $6], [$5])]) 341 383 dnl Optimization hacks: compiling C++ is slow, especially with Boost. What 342 384 dnl we're trying to do here is guess the right combination of link flags … … 360 402 ac_objext=$boost_save_ac_objext 361 403 boost_failed_libs= 362 # Don't bother to ident the 6 nested for loops, only the 2 innermost ones 363 # matter. 404 # Don't bother to ident the following nested for loops, only the 2 405 # innermost ones matter. 406 for boost_lib_ in $2; do 364 407 for boost_tag_ in -$boost_cv_lib_tag ''; do 365 408 for boost_ver_ in -$boost_cv_lib_version ''; do 366 for boost_mt_ in $boost_mt '' -mt; do409 for boost_mt_ in $boost_mt -mt ''; do 367 410 for boost_rtopt_ in $boost_rtopt '' -d; do 368 411 for boost_lib in \ 369 boost_$ 1$boost_tag_$boost_mt_$boost_rtopt_$boost_ver_ \370 boost_$ 1$boost_tag_$boost_rtopt_$boost_ver_ \371 boost_$ 1$boost_tag_$boost_mt_$boost_ver_ \372 boost_$ 1$boost_tag_$boost_ver_412 boost_$boost_lib_$boost_tag_$boost_mt_$boost_rtopt_$boost_ver_ \ 413 boost_$boost_lib_$boost_tag_$boost_rtopt_$boost_ver_ \ 414 boost_$boost_lib_$boost_tag_$boost_mt_$boost_ver_ \ 415 boost_$boost_lib_$boost_tag_$boost_ver_ 373 416 do 374 417 # Avoid testing twice the same lib 375 418 case $boost_failed_libs in #( 376 *@$boost_lib@*) continue;;419 (*@$boost_lib@*) continue;; 377 420 esac 378 421 # If with_boost is empty, we'll search in /lib first, which is not quite … … 381 424 test x"$with_boost" = x && boost_tmp_lib=${boost_cv_inc_path%/include} 382 425 for boost_ldpath in "$boost_tmp_lib/lib" '' \ 383 /usr/local/lib* /usr/lib* \ 384 "$with_boost" C:/Boost/lib /lib* \ 385 /opt/local/lib* /opt/lib* 426 /opt/local/lib* /usr/local/lib* /opt/lib* /usr/lib* \ 427 "$with_boost" C:/Boost/lib /lib* 386 428 do 387 test -e "$boost_ldpath" || continue 429 # Don't waste time with directories that don't exist. 430 if test x"$boost_ldpath" != x && test ! -e "$boost_ldpath"; then 431 continue 432 fi 388 433 boost_save_LDFLAGS=$LDFLAGS 389 434 # Are we looking for a static library? 390 435 case $boost_ldpath:$boost_rtopt_ in #( 391 *?*:*s*) # Yes (Non empty boost_ldpath + s in rt opt)436 (*?*:*s*) # Yes (Non empty boost_ldpath + s in rt opt) 392 437 Boost_lib_LIBS="$boost_ldpath/lib$boost_lib.$libext" 393 438 test -e "$Boost_lib_LIBS" || continue;; #( 394 *) # No: use -lboost_foo to find the shared library.439 (*) # No: use -lboost_foo to find the shared library. 395 440 Boost_lib_LIBS="-l$boost_lib";; 396 441 esac … … 406 451 LIBS=$boost_save_LIBS 407 452 if test x"$Boost_lib" = xyes; then 408 Boost_lib_LDFLAGS="-L$boost_ldpath -Wl,-R$boost_ldpath" 453 # Check or used cached result of whether or not using -R or 454 # -rpath makes sense. Some implementations of ld, such as for 455 # Mac OSX, require -rpath but -R is the flag known to work on 456 # other systems. https://github.com/tsuna/boost.m4/issues/19 457 AC_CACHE_VAL([boost_cv_rpath_link_ldflag], 458 [case $boost_ldpath in 459 '') # Nothing to do. 460 boost_cv_rpath_link_ldflag= 461 boost_rpath_link_ldflag_found=yes;; 462 *) 463 for boost_cv_rpath_link_ldflag in -Wl,-R, -Wl,-rpath,; do 464 LDFLAGS="$boost_save_LDFLAGS -L$boost_ldpath $boost_cv_rpath_link_ldflag$boost_ldpath" 465 LIBS="$boost_save_LIBS $Boost_lib_LIBS" 466 _BOOST_AC_LINK_IFELSE([], 467 [boost_rpath_link_ldflag_found=yes 468 break], 469 [boost_rpath_link_ldflag_found=no]) 470 done 471 ;; 472 esac 473 AS_IF([test "x$boost_rpath_link_ldflag_found" != "xyes"], 474 [AC_MSG_ERROR([Unable to determine whether to use -R or -rpath])]) 475 LDFLAGS=$boost_save_LDFLAGS 476 LIBS=$boost_save_LIBS 477 ]) 478 test x"$boost_ldpath" != x && 479 Boost_lib_LDFLAGS="-L$boost_ldpath $boost_cv_rpath_link_ldflag$boost_ldpath" 409 480 Boost_lib_LDPATH="$boost_ldpath" 410 break 6481 break 7 411 482 else 412 483 boost_failed_libs="$boost_failed_libs@$boost_lib@" … … 418 489 done 419 490 done 491 done # boost_lib_ 420 492 rm -f conftest.$ac_objext 421 493 ]) 422 case $Boost_lib in #( 423 no) _AC_MSG_LOG_CONFTEST 424 AC_MSG_ERROR([cannot find the flags to link with Boost $1]) 425 ;; 426 esac 427 AC_SUBST(AS_TR_CPP([BOOST_$1_LDFLAGS]), [$Boost_lib_LDFLAGS])dnl 428 AC_SUBST(AS_TR_CPP([BOOST_$1_LDPATH]), [$Boost_lib_LDPATH])dnl 429 AC_SUBST([BOOST_LDPATH], [$Boost_lib_LDPATH])dnl 430 AC_SUBST(AS_TR_CPP([BOOST_$1_LIBS]), [$Boost_lib_LIBS])dnl 431 CPPFLAGS=$boost_save_CPPFLAGS 432 AS_VAR_POPDEF([Boost_lib])dnl 433 AS_VAR_POPDEF([Boost_lib_LDFLAGS])dnl 434 AS_VAR_POPDEF([Boost_lib_LDPATH])dnl 435 AS_VAR_POPDEF([Boost_lib_LIBS])dnl 436 AC_LANG_POP([C++])dnl 437 fi 438 ])# BOOST_FIND_LIB 494 439 495 440 496 … … 483 539 BOOST_FIND_HEADER([boost/asio.hpp])]) 484 540 541 485 542 # BOOST_BIMAP() 486 543 # ------------ … … 489 546 [BOOST_FIND_HEADER([boost/bimap.hpp])]) 490 547 548 491 549 # BOOST_BIND() 492 550 # ------------ 493 # Look for Boost.Bind 551 # Look for Boost.Bind. 494 552 BOOST_DEFUN([Bind], 495 553 [BOOST_FIND_HEADER([boost/bind.hpp])]) 554 496 555 497 556 # BOOST_CAST() … … 500 559 BOOST_DEFUN([Cast], 501 560 [BOOST_FIND_HEADER([boost/cast.hpp])]) 561 562 563 # BOOST_CHRONO() 564 # -------------- 565 # Look for Boost.Chrono. 566 BOOST_DEFUN([Chrono], 567 [# Do we have to check for Boost.System? This link-time dependency was 568 # added as of 1.35.0. If we have a version <1.35, we must not attempt to 569 # find Boost.System as it didn't exist by then. 570 if test $boost_major_version -ge 135; then 571 BOOST_SYSTEM([$1]) 572 fi # end of the Boost.System check. 573 boost_filesystem_save_LIBS=$LIBS 574 boost_filesystem_save_LDFLAGS=$LDFLAGS 575 m4_pattern_allow([^BOOST_SYSTEM_(LIBS|LDFLAGS)$])dnl 576 LIBS="$LIBS $BOOST_SYSTEM_LIBS" 577 LDFLAGS="$LDFLAGS $BOOST_SYSTEM_LDFLAGS" 578 BOOST_FIND_LIB([chrono], [$1], 579 [boost/chrono.hpp], 580 [boost::chrono::thread_clock d;]) 581 if test $enable_static_boost = yes && test $boost_major_version -ge 135; then 582 BOOST_FILESYSTEM_LIBS="$BOOST_FILESYSTEM_LIBS $BOOST_SYSTEM_LIBS" 583 fi 584 LIBS=$boost_filesystem_save_LIBS 585 LDFLAGS=$boost_filesystem_save_LDFLAGS 586 ])# BOOST_CHRONO 587 502 588 503 589 # BOOST_CONVERSION() … … 508 594 BOOST_FIND_HEADER([boost/lexical_cast.hpp]) 509 595 ])# BOOST_CONVERSION 596 597 598 # BOOST_CRC() 599 # ----------- 600 # Look for Boost.CRC 601 BOOST_DEFUN([CRC], 602 [BOOST_FIND_HEADER([boost/crc.hpp]) 603 ])# BOOST_CRC 510 604 511 605 … … 539 633 # find Boost.System as it didn't exist by then. 540 634 if test $boost_major_version -ge 135; then 541 BOOST_SYSTEM([$1])635 BOOST_SYSTEM([$1]) 542 636 fi # end of the Boost.System check. 543 637 boost_filesystem_save_LIBS=$LIBS … … 549 643 [boost/filesystem/path.hpp], [boost::filesystem::path p;]) 550 644 if test $enable_static_boost = yes && test $boost_major_version -ge 135; then 551 AC_SUBST([BOOST_FILESYSTEM_LIBS], ["$BOOST_FILESYSTEM_LIBS $BOOST_SYSTEM_LIBS"])645 BOOST_FILESYSTEM_LIBS="$BOOST_FILESYSTEM_LIBS $BOOST_SYSTEM_LIBS" 552 646 fi 553 647 LIBS=$boost_filesystem_save_LIBS … … 556 650 557 651 652 # BOOST_FUSION() 653 # ----------------- 654 # Look for Boost.Fusion 655 BOOST_DEFUN([Fusion], 656 [BOOST_FIND_HEADER([boost/fusion/sequence.hpp])]) 657 658 659 # BOOST_FLYWEIGHT() 660 # ----------------- 661 # Look for Boost.Flyweight. 662 BOOST_DEFUN([Flyweight], 663 [dnl There's a hidden dependency on pthreads. 664 AC_REQUIRE([_BOOST_PTHREAD_FLAG])dnl 665 BOOST_FIND_HEADER([boost/flyweight.hpp]) 666 AC_SUBST([BOOST_FLYWEIGHT_LIBS], [$boost_cv_pthread_flag]) 667 ]) 668 669 558 670 # BOOST_FOREACH() 559 671 # --------------- 560 # Look for Boost.Foreach 672 # Look for Boost.Foreach. 561 673 BOOST_DEFUN([Foreach], 562 674 [BOOST_FIND_HEADER([boost/foreach.hpp])]) … … 565 677 # BOOST_FORMAT() 566 678 # -------------- 567 # Look for Boost.Format 679 # Look for Boost.Format. 568 680 # Note: we can't check for boost/format/format_fwd.hpp because the header isn't 569 681 # standalone. It can't be compiled because it triggers the following error: … … 581 693 582 694 583 # BOOST_ FUSION()695 # BOOST_GEOMETRY() 584 696 # ---------------- 585 # Look for Boost.Fusion 586 BOOST_DEFUN([Fusion], 587 [BOOST_FIND_HEADER([boost/fusion/sequence.hpp])]) 697 # Look for Boost.Geometry (new since 1.47.0). 698 BOOST_DEFUN([Geometry], 699 [BOOST_FIND_HEADER([boost/geometry.hpp]) 700 ])# BOOST_GEOMETRY 588 701 589 702 … … 632 745 # BOOST_LOG([PREFERRED-RT-OPT]) 633 746 # ----------------------------- 634 # Look for Boost.Log For the documentation of PREFERRED-RT-OPT, see the747 # Look for Boost.Log. For the documentation of PREFERRED-RT-OPT, see the 635 748 # documentation of BOOST_FIND_LIB above. 636 749 BOOST_DEFUN([Log], … … 643 756 # BOOST_LOG_SETUP([PREFERRED-RT-OPT]) 644 757 # ----------------------------------- 645 # Look for Boost.Log For the documentation of PREFERRED-RT-OPT, see the758 # Look for Boost.Log. For the documentation of PREFERRED-RT-OPT, see the 646 759 # documentation of BOOST_FIND_LIB above. 647 760 BOOST_DEFUN([Log_Setup], 648 761 [AC_REQUIRE([BOOST_LOG])dnl 649 762 BOOST_FIND_LIB([log_setup], [$1], 650 [boost/log/utility/ init/from_settings.hpp],763 [boost/log/utility/setup/from_settings.hpp], 651 764 [boost::log::basic_settings<char> bs; bs.empty();]) 652 765 ])# BOOST_LOG_SETUP … … 665 778 666 779 780 # BOOST_MPI([PREFERRED-RT-OPT]) 781 # ------------------------------- 782 # Look for Boost MPI. For the documentation of PREFERRED-RT-OPT, see the 783 # documentation of BOOST_FIND_LIB above. Uses MPICXX variable if it is 784 # set, otherwise tries CXX 785 # 786 BOOST_DEFUN([MPI], 787 [boost_save_CXX=${CXX} 788 boost_save_CXXCPP=${CXXCPP} 789 if test x"${MPICXX}" != x; then 790 CXX=${MPICXX} 791 CXXCPP="${MPICXX} -E" 792 fi 793 BOOST_FIND_LIB([mpi], [$1], 794 [boost/mpi.hpp], 795 [int argc = 0; 796 char **argv = 0; 797 boost::mpi::environment env(argc,argv);]) 798 CXX=${boost_save_CXX} 799 CXXCPP=${boost_save_CXXCPP} 800 ])# BOOST_MPI 801 802 803 # BOOST_MPL() 804 # ------------------ 805 # Look for Boost.MPL 806 BOOST_DEFUN([MPL], 807 [BOOST_FIND_HEADER([boost/mpl/for_each.hpp])]) 808 809 667 810 # BOOST_MULTIARRAY() 668 811 # ------------------ 669 812 # Look for Boost.MultiArray 670 813 BOOST_DEFUN([MultiArray], 671 [BOOST_FIND_HEADER([boost/mpl/list.hpp])]) 672 673 674 # BOOST_MMPL() 675 # ------------------ 676 # Look for Boost.MPL 677 BOOST_DEFUN([MPL], 678 [BOOST_FIND_HEADER([boost/mpl/for_each.hpp])]) 814 [BOOST_FIND_HEADER([boost/multi_array.hpp])]) 815 816 817 # BOOST_NUMERIC_UBLAS() 818 # -------------------------- 819 # Look for Boost.NumericUblas (Basic Linear Algebra) 820 BOOST_DEFUN([Numeric_Ublas], 821 [BOOST_FIND_HEADER([boost/numeric/ublas/vector.hpp]) 822 ])# BOOST_NUMERIC_UBLAS 823 679 824 680 825 # BOOST_NUMERIC_CONVERSION() … … 764 909 _BOOST_PYTHON_CONFIG([LIBS], [libs]) 765 910 m4_pattern_allow([^BOOST_PYTHON_MODULE$])dnl 766 BOOST_FIND_LIB ([python], [$1],767 [boost/python.hpp],768 [], [BOOST_PYTHON_MODULE(empty) {}])911 BOOST_FIND_LIBS([python], [python python3], [$1], 912 [boost/python.hpp], 913 [], [BOOST_PYTHON_MODULE(empty) {}]) 769 914 CPPFLAGS=$boost_python_save_CPPFLAGS 770 915 LDFLAGS=$boost_python_save_LDFLAGS … … 812 957 [boost::signal<void ()> s;]) 813 958 ])# BOOST_SIGNALS 959 960 961 # BOOST_SIGNALS2() 962 # ---------------- 963 # Look for Boost.Signals2 (new since 1.39.0). 964 BOOST_DEFUN([Signals2], 965 [BOOST_FIND_HEADER([boost/signals2.hpp]) 966 ])# BOOST_SIGNALS2 814 967 815 968 … … 864 1017 865 1018 866 # BOOST_THREAD S([PREFERRED-RT-OPT])1019 # BOOST_THREAD([PREFERRED-RT-OPT]) 867 1020 # --------------------------------- 868 1021 # Look for Boost.Thread. For the documentation of PREFERRED-RT-OPT, see the 869 1022 # documentation of BOOST_FIND_LIB above. 870 # FIXME: Provide an alias "BOOST_THREAD". 871 BOOST_DEFUN([Threads], 1023 BOOST_DEFUN([Thread], 872 1024 [dnl Having the pthread flag is required at least on GCC3 where 873 1025 dnl boost/thread.hpp would complain if we try to compile without 874 1026 dnl -pthread on GNU/Linux. 875 1027 AC_REQUIRE([_BOOST_PTHREAD_FLAG])dnl 876 boost_threads_save_LIBS=$LIBS 877 boost_threads_save_CPPFLAGS=$CPPFLAGS 878 LIBS="$LIBS $boost_cv_pthread_flag" 879 # Yes, we *need* to put the -pthread thing in CPPFLAGS because with GCC3, 880 # boost/thread.hpp will trigger a #error if -pthread isn't used: 881 # boost/config/requires_threads.hpp:47:5: #error "Compiler threading support 882 # is not turned on. Please set the correct command line options for 883 # threading: -pthread (Linux), -pthreads (Solaris) or -mthreads (Mingw32)" 1028 boost_thread_save_LIBS=$LIBS 1029 boost_thread_save_LDFLAGS=$LDFLAGS 1030 boost_thread_save_CPPFLAGS=$CPPFLAGS 1031 # Link-time dependency from thread to system was added as of 1.49.0. 1032 if test $boost_major_version -ge 149; then 1033 BOOST_SYSTEM([$1]) 1034 fi # end of the Boost.System check. 1035 m4_pattern_allow([^BOOST_SYSTEM_(LIBS|LDFLAGS)$])dnl 1036 LIBS="$LIBS $BOOST_SYSTEM_LIBS $boost_cv_pthread_flag" 1037 LDFLAGS="$LDFLAGS $BOOST_SYSTEM_LDFLAGS" 884 1038 CPPFLAGS="$CPPFLAGS $boost_cv_pthread_flag" 885 BOOST_FIND_LIB([thread], [$1], 886 [boost/thread.hpp], [boost::thread t; boost::mutex m;]) 887 BOOST_THREAD_LIBS="$BOOST_THREAD_LIBS $boost_cv_pthread_flag" 1039 1040 # When compiling for the Windows platform, the threads library is named 1041 # differently. 1042 case $host_os in 1043 (*mingw*) boost_thread_lib_ext=_win32;; 1044 esac 1045 BOOST_FIND_LIBS([thread], [thread$boost_thread_lib_ext], 1046 [$1], 1047 [boost/thread.hpp], [boost::thread t; boost::mutex m;]) 1048 1049 BOOST_THREAD_LIBS="$BOOST_THREAD_LIBS $BOOST_SYSTEM_LIBS $boost_cv_pthread_flag" 1050 BOOST_THREAD_LDFLAGS="$BOOST_SYSTEM_LDFLAGS" 888 1051 BOOST_CPPFLAGS="$BOOST_CPPFLAGS $boost_cv_pthread_flag" 889 LIBS=$boost_threads_save_LIBS 890 CPPFLAGS=$boost_threads_save_CPPFLAGS 891 ])# BOOST_THREADS 1052 LIBS=$boost_thread_save_LIBS 1053 LDFLAGS=$boost_thread_save_LDFLAGS 1054 CPPFLAGS=$boost_thread_save_CPPFLAGS 1055 ])# BOOST_THREAD 1056 1057 AU_ALIAS([BOOST_THREADS], [BOOST_THREAD]) 892 1058 893 1059 … … 938 1104 939 1105 1106 # BOOST_POINTER_CONTAINER() 1107 # ------------------------ 1108 # Look for Boost.PointerContainer 1109 BOOST_DEFUN([Pointer_Container], 1110 [BOOST_FIND_HEADER([boost/ptr_container/ptr_deque.hpp]) 1111 BOOST_FIND_HEADER([boost/ptr_container/ptr_list.hpp]) 1112 BOOST_FIND_HEADER([boost/ptr_container/ptr_vector.hpp]) 1113 BOOST_FIND_HEADER([boost/ptr_container/ptr_array.hpp]) 1114 BOOST_FIND_HEADER([boost/ptr_container/ptr_set.hpp]) 1115 BOOST_FIND_HEADER([boost/ptr_container/ptr_map.hpp]) 1116 ])# BOOST_POINTER_CONTAINER 1117 1118 940 1119 # BOOST_WAVE([PREFERRED-RT-OPT]) 941 1120 # ------------------------------ 942 1121 # NOTE: If you intend to use Wave/Spirit with thread support, make sure you 943 # call BOOST_THREAD Sfirst.1122 # call BOOST_THREAD first. 944 1123 # Look for Boost.Wave. For the documentation of PREFERRED-RT-OPT, see the 945 1124 # documentation of BOOST_FIND_LIB above. … … 950 1129 boost_wave_save_LDFLAGS=$LDFLAGS 951 1130 m4_pattern_allow([^BOOST_((FILE)?SYSTEM|DATE_TIME|THREAD)_(LIBS|LDFLAGS)$])dnl 952 LIBS="$LIBS $BOOST_SYSTEM_LIBS $BOOST_FILESYSTEM_LIBS $BOOST_DATE_TIME_LIBS \1131 LIBS="$LIBS $BOOST_SYSTEM_LIBS $BOOST_FILESYSTEM_LIBS $BOOST_DATE_TIME_LIBS \ 953 1132 $BOOST_THREAD_LIBS" 954 LDFLAGS="$LDFLAGS $BOOST_SYSTEM_LDFLAGS $BOOST_FILESYSTEM_LDFLAGS \1133 LDFLAGS="$LDFLAGS $BOOST_SYSTEM_LDFLAGS $BOOST_FILESYSTEM_LDFLAGS \ 955 1134 $BOOST_DATE_TIME_LDFLAGS $BOOST_THREAD_LDFLAGS" 956 1135 BOOST_FIND_LIB([wave], [$1], … … 976 1155 # _BOOST_PTHREAD_FLAG() 977 1156 # --------------------- 978 # Internal helper for BOOST_THREADS. Based on ACX_PTHREAD: 979 # http://autoconf-archive.cryp.to/acx_pthread.html 1157 # Internal helper for BOOST_THREAD. Computes boost_cv_pthread_flag 1158 # which must be used in CPPFLAGS and LIBS. 1159 # 1160 # Yes, we *need* to put the -pthread thing in CPPFLAGS because with GCC3, 1161 # boost/thread.hpp will trigger a #error if -pthread isn't used: 1162 # boost/config/requires_threads.hpp:47:5: #error "Compiler threading support 1163 # is not turned on. Please set the correct command line options for 1164 # threading: -pthread (Linux), -pthreads (Solaris) or -mthreads (Mingw32)" 1165 # 1166 # Based on ACX_PTHREAD: http://autoconf-archive.cryp.to/acx_pthread.html 980 1167 AC_DEFUN([_BOOST_PTHREAD_FLAG], 981 1168 [AC_REQUIRE([AC_PROG_CXX])dnl … … 1045 1232 ["defined __GNUC__ && __GNUC__ == $1 && __GNUC_MINOR__ == $2 && !defined __ICC @ gcc$1$2"])dnl 1046 1233 1234 # _BOOST_mingw_test(MAJOR, MINOR) 1235 # ----------------------------- 1236 # Internal helper for _BOOST_FIND_COMPILER_TAG. 1237 m4_define([_BOOST_mingw_test], 1238 ["defined __GNUC__ && __GNUC__ == $1 && __GNUC_MINOR__ == $2 && !defined __ICC && \ 1239 (defined WIN32 || defined WINNT || defined _WIN32 || defined __WIN32 \ 1240 || defined __WIN32__ || defined __WINNT || defined __WINNT__) @ mgw$1$2"])dnl 1241 1047 1242 1048 1243 # _BOOST_FIND_COMPILER_TAG() … … 1072 1267 # the same defines as GCC's). 1073 1268 for i in \ 1269 _BOOST_mingw_test(4,8) \ 1270 _BOOST_gcc_test(4, 8) \ 1271 _BOOST_mingw_test(4,7) \ 1272 _BOOST_gcc_test(4, 7) \ 1273 _BOOST_mingw_test(4,6) \ 1074 1274 _BOOST_gcc_test(4, 6) \ 1275 _BOOST_mingw_test(4,5) \ 1075 1276 _BOOST_gcc_test(4, 5) \ 1277 _BOOST_mingw_test(4,4) \ 1076 1278 _BOOST_gcc_test(4, 4) \ 1279 _BOOST_mingw_test(4,3) \ 1077 1280 _BOOST_gcc_test(4, 3) \ 1281 _BOOST_mingw_test(4,2) \ 1078 1282 _BOOST_gcc_test(4, 2) \ 1283 _BOOST_mingw_test(4,1) \ 1079 1284 _BOOST_gcc_test(4, 1) \ 1285 _BOOST_mingw_test(4,0) \ 1080 1286 _BOOST_gcc_test(4, 0) \ 1081 1287 "defined __GNUC__ && __GNUC__ == 3 && !defined __ICC \ … … 1143 1349 AC_DEFUN([_BOOST_GUESS_WHETHER_TO_USE_MT], 1144 1350 [# Check whether we do better use `mt' even though we weren't ask to. 1351 AC_LANG_PUSH([C++])dnl 1145 1352 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ 1146 1353 #if defined _REENTRANT || defined _MT || defined __MT__ … … 1150 1357 #endif 1151 1358 ]])], [boost_guess_use_mt=:], [boost_guess_use_mt=false]) 1359 AC_LANG_POP([C++])dnl 1152 1360 ]) 1153 1361 … … 1173 1381 _AS_ECHO_LOG([re-using the existing conftest.$ac_objext]) 1174 1382 AS_IF([_AC_DO_STDERR($ac_link) && { 1175 1176 1383 test -z "$ac_[]_AC_LANG_ABBREV[]_werror_flag" || 1384 test ! -s conftest.err 1177 1385 } && test -s conftest$ac_exeext && { 1178 1179 1386 test "$cross_compiling" = yes || 1387 $as_executable_p conftest$ac_exeext 1180 1388 dnl FIXME: use AS_TEST_X instead when 2.61 is widespread enough. 1181 1389 }], -
m4/qwt.m4
r4c9101 ra91710 80 80 AC_TRY_LINK( 81 81 [#include <qwt_plot.h>], 82 [QwtPlot * plot = new QwtPlot( QString("Two Curves"));],82 [QwtPlot * plot = new QwtPlot();], 83 83 [mol_ac_have_qwt=true]) 84 84 AC_LANG_RESTORE -
src/Actions/ActionQueue.cpp
r4c9101 ra91710 145 145 run_thread.sleep(boost::get_system_time() + boost::posix_time::milliseconds(100)); 146 146 #else 147 run_thread.sleep_for(100);147 boost::this_thread::sleep_for(boost::chrono::milliseconds(100)); 148 148 #endif 149 149 } catch(boost::thread_interrupted &e) { -
src/Actions/Action_impl_python.hpp
r4c9101 ra91710 21 21 #include <boost/preprocessor/punctuation/comma_if.hpp> 22 22 #include <boost/preprocessor/punctuation/paren.hpp> 23 #include <boost/preprocessor/seq/elem.hpp> 24 #include <boost/preprocessor/seq/size.hpp> 25 #include <boost/preprocessor/seq/transform.hpp> 23 26 24 27 // some derived names: if CATEGORY is not given, we don't prefix with it … … 48 51 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramdescriptions)),\ 49 52 ERROR: There are not the same number of "paramtokens" and "paramdescriptions" in: __FILE__ \ 53 ) 54 #endif 55 #ifdef paramreferences 56 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramreferences)),\ 57 ERROR: There are not the same number of "paramtokens" and "paramreferences" in: __FILE__ \ 58 ) 59 #endif 60 61 #ifdef paramtypes 62 BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramtypes)),\ 63 ERROR: There are not the same number of "paramtokens" and "paramtypes" in: __FILE__ \ 50 64 ) 51 65 #endif … … 83 97 // print a list of type ref followed, i.e. "int i, double position" 84 98 #define type_list(z,n,TYPELIST, VARLIST) \ 85 BOOST_PP_COMMA_IF(n) \99 BOOST_PP_COMMA_IF(n) \ 86 100 BOOST_PP_SEQ_ELEM(n, TYPELIST) \ 87 101 BOOST_PP_SEQ_ELEM(n, VARLIST) … … 90 104 #define value_print(z, n, container, prefix) \ 91 105 prefix \ 92 BOOST_PP_SEQ_ELEM(n, container) \93 .set( \94 BOOST_PP_SEQ_ELEM(n, container) \106 BOOST_PP_SEQ_ELEM(n, container) \ 107 .set( \ 108 BOOST_PP_SEQ_ELEM(n, container) \ 95 109 ); 96 110 … … 110 124 BOOST_PP_CAT( COMMAND, _stringargs)( 111 125 #if defined paramtypes 112 #define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, BOOST_PP_SEQ_TRANSFORM( type2string, , paramtypes), paramreferences)126 #define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, BOOST_PP_SEQ_TRANSFORM( type2string, ~, paramtypes), paramreferences) 113 127 #define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1) 114 128 #include BOOST_PP_LOCAL_ITERATE() -
src/Actions/FragmentationAction/FragmentationAutomationAction.cpp
r4c9101 ra91710 175 175 params.executable.get().string() 176 176 ); 177 if (NoJobs != NumberJobs) { 178 ELOG(1, "Not all jobs were added succesfully."); 179 return Action::failure; 180 } 177 181 LOG(1, "INFO: Added " << NoJobs << " from FragmentJobsQueue."); 178 182 -
src/Actions/unittests/Makefile.am
r4c9101 ra91710 25 25 26 26 ACTIONLIBS = \ 27 libUnitTest.la \ 28 ../libMolecuilder.la \ 27 29 ../libMolecuilderUI.la 28 30 if CONDJOBMARKET … … 33 35 # note that DummyUI inherits Dialog which depends on boost/file_system ... 34 36 35 ActionRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\37 ActionRegistryUnitTest_SOURCES = \ 36 38 ../Actions/unittests/ActionRegistryUnitTest.cpp \ 37 39 ../Actions/unittests/ActionRegistryUnitTest.hpp \ … … 40 42 ../Parameters/unittests/stubs/BoxVectorValidatorStub.cpp \ 41 43 ../Parameters/unittests/stubs/TimeStepPresentValidatorStub.cpp 42 ActionRegistryUnitTest_LDADD = ${ACTIONLIBS} 44 ActionRegistryUnitTest_LDADD = ${ACTIONLIBS} \ 45 $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS) 43 46 44 ActionSequenceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\47 ActionSequenceUnitTest_SOURCES = \ 45 48 ../Actions/unittests/ActionSequenceUnitTest.cpp \ 46 49 ../Actions/unittests/ActionSequenceUnitTest.hpp \ … … 55 58 $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS) 56 59 57 AtomsCalculationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\60 AtomsCalculationUnitTest_SOURCES = \ 58 61 ../Actions/unittests/AtomsCalculationUnitTest.cpp \ 59 62 ../Actions/unittests/AtomsCalculationUnitTest.hpp 60 63 AtomsCalculationUnitTest_LDADD = ${ACTIONLIBS} 61 64 62 ManipulateAtomsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\65 ManipulateAtomsUnitTest_SOURCES = \ 63 66 ../Actions/unittests/ManipulateAtomsUnitTest.cpp \ 64 67 ../Actions/unittests/ManipulateAtomsUnitTest.hpp \ -
src/Analysis/unittests/Makefile.am
r4c9101 ra91710 28 28 29 29 ANALYSISLIBS = \ 30 libUnitTest.la \ 30 31 ../libMolecuilderAnalysis.la \ 31 32 ../libMolecuilderUI.la \ … … 40 41 $(BOOST_LIB) 41 42 42 AnalysisBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\43 AnalysisBondsUnitTest_SOURCES = \ 43 44 ../Analysis/unittests/AnalysisBondsUnitTest.cpp \ 44 45 ../Analysis/unittests/AnalysisBondsUnitTest.hpp 45 46 AnalysisBondsUnitTest_LDADD = ${ANALYSISLIBS} 46 47 47 AnalysisCorrelationToPointUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\48 AnalysisCorrelationToPointUnitTest_SOURCES = \ 48 49 ../Analysis/unittests/AnalysisCorrelationToPointUnitTest.cpp \ 49 50 ../Analysis/unittests/AnalysisCorrelationToPointUnitTest.hpp 50 51 AnalysisCorrelationToPointUnitTest_LDADD = ${ANALYSISLIBS} 51 52 52 AnalysisCorrelationToSurfaceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\53 AnalysisCorrelationToSurfaceUnitTest_SOURCES = \ 53 54 ../Analysis/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp \ 54 55 ../Analysis/unittests/AnalysisCorrelationToSurfaceUnitTest.hpp 55 56 AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ANALYSISLIBS} 56 57 57 AnalysisPairCorrelationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\58 AnalysisPairCorrelationUnitTest_SOURCES = \ 58 59 ../Analysis/unittests/AnalysisPairCorrelationUnitTest.cpp \ 59 60 ../Analysis/unittests/AnalysisPairCorrelationUnitTest.hpp 60 61 AnalysisPairCorrelationUnitTest_LDADD = ${ANALYSISLIBS} 61 62 62 CountBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\63 CountBondsUnitTest_SOURCES = \ 63 64 ../Analysis/unittests/CountBondsUnitTest.cpp \ 64 65 ../Analysis/unittests/CountBondsUnitTest.hpp -
src/Atom/unittests/Makefile.am
r4c9101 ra91710 21 21 22 22 ATOMTESTLIBS = \ 23 libUnitTest.la \ 24 ../libMolecuilder.la \ 23 25 ../libMolecuilderUI.la 24 26 ATOMTESTLIBS += \ … … 27 29 $(BOOST_LIB) 28 30 29 AtomObserverUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\31 AtomObserverUnitTest_SOURCES = \ 30 32 ../Atom/unittests/AtomObserverUnitTest.cpp \ 31 33 ../Atom/unittests/AtomObserverUnitTest.hpp \ … … 34 36 AtomObserverUnitTest_LDADD = ${ATOMTESTLIBS} 35 37 36 CopyAtomsInterfaceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\38 CopyAtomsInterfaceUnitTest_SOURCES = \ 37 39 ../Atom/unittests/CopyAtomsInterfaceUnitTest.cpp \ 38 40 ../Atom/unittests/CopyAtomsInterfaceUnitTest.hpp -
src/Descriptors/unittests/Makefile.am
r4c9101 ra91710 19 19 20 20 DESCRIPTORLIBS = \ 21 libUnitTest.la \ 22 ../libMolecuilder.la \ 21 23 ../libMolecuilderUI.la 22 24 if CONDJOBMARKET … … 30 32 31 33 32 AtomDescriptorUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\34 AtomDescriptorUnitTest_SOURCES = \ 33 35 ../Descriptors/unittests/AtomDescriptorUnitTest.cpp \ 34 36 ../Descriptors/unittests/AtomDescriptorUnitTest.hpp 35 37 AtomDescriptorUnitTest_LDADD = ${DESCRIPTORLIBS} 36 38 37 MoleculeDescriptorTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\39 MoleculeDescriptorTest_SOURCES = \ 38 40 ../Descriptors/unittests/MoleculeDescriptorUnitTest.cpp \ 39 41 ../Descriptors/unittests/MoleculeDescriptorUnitTest.hpp -
src/Element/unittests/Makefile.am
r4c9101 ra91710 22 22 23 23 ELEMENTLIBS = \ 24 libUnitTest.la \ 25 ../libMolecuilder.la \ 24 26 ../libMolecuilderElement.la \ 25 27 ../libMolecuilderHelpers.la \ 28 $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS) \ 26 29 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \ 27 30 ${CodePatterns_LIBS} 28 31 29 ElementUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\32 ElementUnitTest_SOURCES = \ 30 33 ../Element/unittests/ElementUnitTest.cpp \ 31 34 ../Element/unittests/ElementUnitTest.hpp 32 35 ElementUnitTest_LDADD = $(ELEMENTLIBS) 33 36 34 IonUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\37 IonUnitTest_SOURCES = \ 35 38 ../Element/unittests/IonUnitTest.cpp \ 36 39 ../Element/unittests/IonUnitTest.hpp 37 40 IonUnitTest_LDADD = $(ELEMENTLIBS) 38 41 39 PeriodentafelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\42 PeriodentafelUnitTest_SOURCES = \ 40 43 ../Element/unittests/PeriodentafelUnitTest.cpp \ 41 44 ../Element/unittests/PeriodentafelUnitTest.hpp -
src/Filling/unittests/Makefile.am
r4c9101 ra91710 34 34 35 35 FILLINGLIBS = \ 36 libUnitTest.la \ 37 ../libMolecuilder.la \ 36 38 ../libMolecuilderFilling.la \ 37 ../libMolecuilder UI.la \38 ../libMolecuilder .la39 ../libMolecuilderShapes.la \ 40 ../libMolecuilderUI.la 39 41 if CONDJOBMARKET 40 42 FILLINGLIBS += \ … … 46 48 $(BOOST_LIB) 47 49 48 ClusterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\50 ClusterUnitTest_SOURCES = \ 49 51 ../Filling/unittests/ClusterUnitTest.cpp \ 50 52 ../Filling/unittests/ClusterUnitTest.hpp 51 53 ClusterUnitTest_LDADD = $(FILLINGLIBS) 52 54 53 FillerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\55 FillerUnitTest_SOURCES = \ 54 56 ../Filling/unittests/FillerUnitTest.cpp \ 55 57 ../Filling/unittests/FillerUnitTest.hpp 56 58 FillerUnitTest_LDADD = $(FILLINGLIBS) 57 59 58 IsInsideDomain_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\60 IsInsideDomain_FillPredicateUnitTest_SOURCES = \ 59 61 ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.cpp \ 60 62 ../Filling/unittests/IsInsideDomain_FillPredicateUnitTest.hpp 61 63 IsInsideDomain_FillPredicateUnitTest_LDADD = $(FILLINGLIBS) 62 64 63 IsInsideSurface_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\65 IsInsideSurface_FillPredicateUnitTest_SOURCES = \ 64 66 ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.cpp \ 65 67 ../Filling/unittests/IsInsideSurface_FillPredicateUnitTest.hpp 66 68 IsInsideSurface_FillPredicateUnitTest_LDADD = $(FILLINGLIBS) 67 69 68 IsValidInDomain_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\70 IsValidInDomain_FillPredicateUnitTest_SOURCES = \ 69 71 ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.cpp \ 70 72 ../Filling/unittests/IsValidInDomain_FillPredicateUnitTest.hpp 71 73 IsValidInDomain_FillPredicateUnitTest_LDADD = $(FILLINGLIBS) 72 74 73 IsVoidNode_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\75 IsVoidNode_FillPredicateUnitTest_SOURCES = \ 74 76 ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.cpp \ 75 77 ../Filling/unittests/IsVoidNode_FillPredicateUnitTest.hpp 76 78 IsVoidNode_FillPredicateUnitTest_LDADD = $(FILLINGLIBS) 77 79 78 Ops_FillPredicateUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\80 Ops_FillPredicateUnitTest_SOURCES = \ 79 81 ../Filling/unittests/Ops_FillPredicateUnitTest.cpp \ 80 82 ../Filling/unittests/Ops_FillPredicateUnitTest.hpp -
src/Fragmentation/Automation/MPQCCommandFragmentController.cpp
r4c9101 ra91710 74 74 // job->DoValenceOnly = _DoValenceOnly; 75 75 #ifndef HAVE_JOBMARKET 76 job->setId(getAvailableId()); 76 JobId_t id = getAvailableId(); 77 if (id == (JobId_t)JobId::IllegalJob) { 78 queue.clear(); 79 break; 80 } 81 job->setId(id); 77 82 if (!_executable.empty()) 78 83 job->setCommand(_executable); -
src/Fragmentation/Automation/MPQCFragmentController.cpp
r4c9101 ra91710 67 67 job->DoValenceOnly = _DoValenceOnly; 68 68 JobId_t id = getAvailableId(); 69 if (id == FragmentJob::IllegalJob) {69 if (id == (JobId_t)JobId::IllegalJob) { 70 70 status = false; 71 71 break; … … 74 74 } 75 75 // add the jobs 76 addJobs(newjobs); 76 if (status) 77 addJobs(newjobs); 77 78 status &= (newjobs.size() != 0); 78 79 -
src/Fragmentation/Automation/Makefile.am
r4c9101 ra91710 40 40 noinst_LTLIBRARIES += libMolecuilderFragmentationAutomation.la 41 41 libMolecuilderFragmentationAutomation_la_includedir = $(includedir)/MoleCuilder/ 42 libMolecuilderFragmentationAutomation_la_CPPFLAGS = $ {BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} $(JobMarket_CFLAGS)42 libMolecuilderFragmentationAutomation_la_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} $(JobMarket_CFLAGS) 43 43 libMolecuilderFragmentationAutomation_la_LDFLAGS = -ldl ${BOOST_LDFLAGS} 44 44 libMolecuilderFragmentationAutomation_la_LIBADD = \ -
src/Fragmentation/Automation/SpecificFragmentController_ReceiveResultContainer_impl.hpp
r4c9101 ra91710 32 32 // convert 33 33 std::vector<T> fragmentData; 34 ConvertFragmentResultTo(fragmentresults, fragmentData); 34 SpecificFragmentController::ReceiveResultContainer<T>::ConvertFragmentResultTo( 35 fragmentresults, 36 fragmentData); 35 37 36 38 // insert into map 37 insertResults(fragmentresults, fragmentData); 39 SpecificFragmentController::ReceiveResultContainer<T>::insertResults( 40 fragmentresults, 41 fragmentData); 38 42 39 43 return fragmentData.size(); -
src/Fragmentation/Exporters/unittests/Makefile.am
r4c9101 ra91710 22 22 23 23 FRAGMENTATIONEXPORTERSLIBS = \ 24 libUnitTest.la \ 25 ../libMolecuilder.la \ 24 26 ../libMolecuilderFragmentation.la \ 25 27 ${CodePatterns_LIBS} \ 26 28 $(BOOST_LIB) 27 29 28 HydrogenPoolUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\30 HydrogenPoolUnitTest_SOURCES = \ 29 31 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.cpp \ 30 32 ../Fragmentation/Exporters/unittests/HydrogenPoolUnitTest.hpp … … 33 35 ${FRAGMENTATIONEXPORTERSLIBS} 34 36 35 SaturatedFragmentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\37 SaturatedFragmentUnitTest_SOURCES = \ 36 38 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.cpp \ 37 39 ../Fragmentation/Exporters/unittests/SaturatedFragmentUnitTest.hpp … … 41 43 ${FRAGMENTATIONEXPORTERSLIBS} 42 44 43 SaturationDistanceMaximizerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\45 SaturationDistanceMaximizerUnitTest_SOURCES = \ 44 46 ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.cpp \ 45 47 ../Fragmentation/Exporters/unittests/SaturationDistanceMaximizerUnitTest.hpp \ -
src/Fragmentation/Homology/unittests/Makefile.am
r4c9101 ra91710 25 25 26 26 FRAGMENTATIONHOMOLOGYLIBS = \ 27 libUnitTest.la \ 28 ../libMolecuilder.la \ 27 29 ../libMolecuilderFragmentationSetValues.la \ 28 30 ../libMolecuilderFragmentation.la \ … … 33 35 $(BOOST_LIB) 34 36 35 FragmentEdgeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\37 FragmentEdgeUnitTest_SOURCES = \ 36 38 ../Fragmentation/Homology/unittests/FragmentEdgeUnitTest.cpp \ 37 39 ../Fragmentation/Homology/unittests/FragmentEdgeUnitTest.hpp 38 40 FragmentEdgeUnitTest_LDADD = ${FRAGMENTATIONHOMOLOGYLIBS} 39 41 40 FragmentNodeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\42 FragmentNodeUnitTest_SOURCES = \ 41 43 ../Fragmentation/Homology/unittests/FragmentNodeUnitTest.cpp \ 42 44 ../Fragmentation/Homology/unittests/FragmentNodeUnitTest.hpp 43 45 FragmentNodeUnitTest_LDADD = ${FRAGMENTATIONHOMOLOGYLIBS} 44 46 45 HomologyContainerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\47 HomologyContainerUnitTest_SOURCES = \ 46 48 ../Fragmentation/Homology/unittests/HomologyContainerUnitTest.cpp \ 47 49 ../Fragmentation/Homology/unittests/HomologyContainerUnitTest.hpp \ … … 54 56 $(BOOST_LIB) 55 57 56 HomologyGraphUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\58 HomologyGraphUnitTest_SOURCES = \ 57 59 ../Fragmentation/Homology/unittests/HomologyGraphUnitTest.cpp \ 58 60 ../Fragmentation/Homology/unittests/HomologyGraphUnitTest.hpp -
src/Fragmentation/Interfragmenter.cpp
r4c9101 ra91710 136 136 // create a lookup specific to this fragment 137 137 atomkeyset_t fragmentmap; 138 for (candidates_t::const_iterator iter = candidates.begin();139 iter != candidates.end(); ++iter) {140 const atom * _atom = * iter;138 for (candidates_t::const_iterator candidateiter = candidates.begin(); 139 candidateiter != candidates.end(); ++candidateiter) { 140 const atom * _atom = *candidateiter; 141 141 atomkeyset_t::const_iterator iter = atomkeyset.find(_atom); 142 142 ASSERT( iter != atomkeyset.end(), … … 153 153 const atom *_atom = *candidateiter; 154 154 LOG(3, "DEBUG: Current candidate is " << *_atom << "."); 155 atomkeyset_t::iterator iter = fragmentmap.find(_atom);156 ASSERT( iter != fragmentmap.end(),155 atomkeyset_t::iterator finditer = fragmentmap.find(_atom); 156 ASSERT( finditer != fragmentmap.end(), 157 157 "Interfragmenter::operator() - could not find atom " 158 158 +toString(_atom->getId())+" in fragment specific lookup."); 159 keysets_t &othersets = iter->second;159 keysets_t &othersets = finditer->second; 160 160 keysets_t::iterator otheriter = othersets.begin(); 161 161 while (otheriter != othersets.end()) { -
src/Fragmentation/Summation/Containers/Makefile.am
r4c9101 ra91710 41 41 noinst_LTLIBRARIES += libMolecuilderFragmentationContainers.la 42 42 libMolecuilderFragmentationContainers_la_includedir = $(includedir)/MoleCuilder/ 43 libMolecuilderFragmentationContainers_la_CPPFLAGS = $ {BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} $(JobMarket_CFLAGS)43 libMolecuilderFragmentationContainers_la_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} $(JobMarket_CFLAGS) 44 44 libMolecuilderFragmentationContainers_la_LDFLAGS = -ldl ${BOOST_LDFLAGS} 45 45 libMolecuilderFragmentationContainers_la_LIBADD = \ -
src/Fragmentation/Summation/Containers/unittests/Makefile.am
r4c9101 ra91710 17 17 18 18 FRAGMENTATIONCONTAINERLIBS = \ 19 libUnitTest.la \ 20 ../libMolecuilder.la \ 19 21 ../libMolecuilderFragmentationSummation.la \ 20 22 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \ … … 24 26 25 27 MPQCDataUnitTest_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl 26 MPQCDataUnitTest_CPPFLAGS = $ {BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}27 MPQCDataUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\28 MPQCDataUnitTest_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS} 29 MPQCDataUnitTest_SOURCES = \ 28 30 ../Fragmentation/Summation/Containers/unittests/MPQCDataUnitTest.cpp \ 29 31 ../Fragmentation/Summation/Containers/unittests/MPQCDataUnitTest.hpp -
src/Fragmentation/Summation/Converter/Makefile.am
r4c9101 ra91710 10 10 noinst_LTLIBRARIES += libMolecuilderFragmentationConverter.la 11 11 libMolecuilderFragmentationConverter_la_includedir = $(includedir)/MoleCuilder/ 12 libMolecuilderFragmentationConverter_la_CPPFLAGS = $ {BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}12 libMolecuilderFragmentationConverter_la_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} 13 13 libMolecuilderFragmentationConverter_la_LDFLAGS = -ldl ${BOOST_LDFLAGS} 14 14 libMolecuilderFragmentationConverter_la_LIBADD = \ -
src/Fragmentation/Summation/Makefile.am
r4c9101 ra91710 34 34 lib_LTLIBRARIES += libMolecuilderFragmentationSummation.la 35 35 libMolecuilderFragmentationSummation_la_includedir = $(includedir)/MoleCuilder/ 36 libMolecuilderFragmentationSummation_la_CPPFLAGS = $ {BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}36 libMolecuilderFragmentationSummation_la_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} 37 37 libMolecuilderFragmentationSummation_la_LDFLAGS = -ldl \ 38 38 $(BOOST_SERIALIZATION_LDFLAGS) \ -
src/Fragmentation/Summation/SetValues/Makefile.am
r4c9101 ra91710 22 22 noinst_LTLIBRARIES += libMolecuilderFragmentationSetValues.la 23 23 libMolecuilderFragmentationSetValues_la_includedir = $(includedir)/MoleCuilder/ 24 libMolecuilderFragmentationSetValues_la_CPPFLAGS = $ {BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}24 libMolecuilderFragmentationSetValues_la_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} 25 25 libMolecuilderFragmentationSetValues_la_LDFLAGS = -ldl ${BOOST_LDFLAGS} 26 26 libMolecuilderFragmentationSetValues_la_LIBADD = \ -
src/Fragmentation/Summation/SetValues/unittests/Makefile.am
r4c9101 ra91710 31 31 32 32 FRAGMENTATIONSETVALUESLIBS = \ 33 libUnitTest.la \ 34 ../libMolecuilder.la \ 33 35 ../libMolecuilderFragmentationSetValues.la \ 34 36 ${CodePatterns_LIBS} \ 35 37 $(BOOST_LIB) 36 38 37 EigenvaluesUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\39 EigenvaluesUnitTest_SOURCES = \ 38 40 ../Fragmentation/Summation/SetValues/unittests/EigenvaluesUnitTest.cpp \ 39 41 ../Fragmentation/Summation/SetValues/unittests/EigenvaluesUnitTest.hpp … … 42 44 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) 43 45 44 FragmentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\46 FragmentUnitTest_SOURCES = \ 45 47 ../Fragmentation/Summation/SetValues/unittests/FragmentUnitTest.cpp \ 46 48 ../Fragmentation/Summation/SetValues/unittests/FragmentUnitTest.hpp … … 49 51 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) 50 52 51 HistogramUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\53 HistogramUnitTest_SOURCES = \ 52 54 ../Fragmentation/Summation/SetValues/unittests/HistogramUnitTest.cpp \ 53 55 ../Fragmentation/Summation/SetValues/unittests/HistogramUnitTest.hpp 54 56 HistogramUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS} 55 57 56 IndexedVectorsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\58 IndexedVectorsUnitTest_SOURCES = \ 57 59 ../Fragmentation/Summation/SetValues/unittests/IndexedVectorsUnitTest.cpp \ 58 60 ../Fragmentation/Summation/SetValues/unittests/IndexedVectorsUnitTest.hpp 59 61 IndexedVectorsUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS} 60 62 61 SamplingGridPropertiesUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\63 SamplingGridPropertiesUnitTest_SOURCES = \ 62 64 ../Fragmentation/Summation/SetValues/unittests/SamplingGridPropertiesUnitTest.cpp \ 63 65 ../Fragmentation/Summation/SetValues/unittests/SamplingGridPropertiesUnitTest.hpp 64 66 SamplingGridPropertiesUnitTest_LDADD = ${FRAGMENTATIONSETVALUESLIBS} 65 67 66 SamplingGridUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\68 SamplingGridUnitTest_SOURCES = \ 67 69 ../Fragmentation/Summation/SetValues/unittests/SamplingGridUnitTest.cpp \ 68 70 ../Fragmentation/Summation/SetValues/unittests/SamplingGridUnitTest.hpp -
src/Fragmentation/Summation/unittests/Makefile.am
r4c9101 ra91710 34 34 35 35 FRAGMENTATIONSUMMATIONLIBS = \ 36 libUnitTest.la \ 37 ../libMolecuilder.la \ 36 38 ../libMolecuilderFragmentationSummation.la \ 37 39 ${CodePatterns_LIBS} \ … … 39 41 40 42 41 IndexSetUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\43 IndexSetUnitTest_SOURCES = \ 42 44 ../Fragmentation/Summation/unittests/IndexSetUnitTest.cpp \ 43 45 ../Fragmentation/Summation/unittests/IndexSetUnitTest.hpp 44 46 IndexSetUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} 45 47 46 IndexSetContainerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\48 IndexSetContainerUnitTest_SOURCES = \ 47 49 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.cpp \ 48 50 ../Fragmentation/Summation/unittests/IndexSetContainerUnitTest.hpp … … 53 55 ${FRAGMENTATIONSUMMATIONLIBS} 54 56 55 OrthogonalSummationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\57 OrthogonalSummationUnitTest_SOURCES = \ 56 58 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.cpp \ 57 59 ../Fragmentation/Summation/unittests/OrthogonalSummationUnitTest.hpp \ … … 60 62 OrthogonalSummationUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} 61 63 62 SetValueUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\64 SetValueUnitTest_SOURCES = \ 63 65 ../Fragmentation/Summation/unittests/SetValueUnitTest.cpp \ 64 66 ../Fragmentation/Summation/unittests/SetValueUnitTest.hpp \ … … 67 69 SetValueUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} 68 70 69 SetValueMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\71 SetValueMapUnitTest_SOURCES = \ 70 72 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.cpp \ 71 73 ../Fragmentation/Summation/unittests/SetValueMapUnitTest.hpp 72 74 SetValueMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} 73 75 74 SubsetMapUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\76 SubsetMapUnitTest_SOURCES = \ 75 77 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.cpp \ 76 78 ../Fragmentation/Summation/unittests/SubsetMapUnitTest.hpp 77 79 SubsetMapUnitTest_LDADD = ${FRAGMENTATIONSUMMATIONLIBS} 78 80 79 SummationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\81 SummationUnitTest_SOURCES = \ 80 82 ../Fragmentation/Summation/unittests/SummationUnitTest.cpp \ 81 83 ../Fragmentation/Summation/unittests/SummationUnitTest.hpp \ -
src/Fragmentation/unittests/Makefile.am
r4c9101 ra91710 19 19 20 20 FRAGMENTATIONLIBS = \ 21 libUnitTest.la \ 22 ../libMolecuilder.la \ 21 23 ../libMolecuilderFragmentation.la \ 22 24 ../libMolecuilderFragmentation_KeysetsContainer.la \ … … 26 28 27 29 28 KeySetsContainerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\30 KeySetsContainerUnitTest_SOURCES = \ 29 31 ../Fragmentation/unittests/KeySetsContainerUnitTest.cpp \ 30 32 ../Fragmentation/unittests/KeySetsContainerUnitTest.hpp 31 33 KeySetsContainerUnitTest_LDADD = ${FRAGMENTATIONLIBS} 32 34 33 MatrixContainerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\35 MatrixContainerUnitTest_SOURCES = \ 34 36 ../Fragmentation/unittests/MatrixContainerUnitTest.cpp \ 35 37 ../Fragmentation/unittests/MatrixContainerUnitTest.hpp -
src/FunctionApproximation/unittests/Makefile.am
r4c9101 ra91710 19 19 20 20 FUNCTIONAPPROXIMATIONLIBS = \ 21 libUnitTest.la \ 22 ../libMolecuilder.la \ 21 23 ../libMolecuilderFunctionApproximation.la \ 22 24 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ … … 25 27 $(BOOST_LIB) 26 28 27 ExtractorsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\29 ExtractorsUnitTest_SOURCES = \ 28 30 ../FunctionApproximation/unittests/ExtractorsUnitTest.cpp \ 29 31 ../FunctionApproximation/unittests/ExtractorsUnitTest.hpp … … 32 34 ${FUNCTIONAPPROXIMATIONLIBS} 33 35 34 FunctionArgumentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\36 FunctionArgumentUnitTest_SOURCES = \ 35 37 ../FunctionApproximation/unittests/FunctionArgumentUnitTest.cpp \ 36 38 ../FunctionApproximation/unittests/FunctionArgumentUnitTest.hpp -
src/Graph/unittests/Makefile.am
r4c9101 ra91710 20 20 21 21 GRAPHLIBS = \ 22 libUnitTest.la \ 23 ../libMolecuilder.la \ 22 24 ../libMolecuilderUI.la \ 23 25 ../libMolecuilderGraph.la … … 32 34 33 35 34 AdjacencyListUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\36 AdjacencyListUnitTest_SOURCES = \ 35 37 ../Graph/unittests/AdjacencyListUnitTest.cpp \ 36 38 ../Graph/unittests/AdjacencyListUnitTest.hpp 37 39 AdjacencyListUnitTest_LDADD = ${ALLLIBS} 38 40 39 BondGraphUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\41 BondGraphUnitTest_SOURCES = \ 40 42 ../Graph/unittests/BondGraphUnitTest.cpp \ 41 43 ../Graph/unittests/BondGraphUnitTest.hpp -
src/Jobs/Makefile.am
r4c9101 ra91710 56 56 libMolecuilderJobs_la_includedir = $(includedir)/MoleCuilder/ 57 57 nobase_libMolecuilderJobs_la_include_HEADERS = $(JOBSHEADER) 58 libMolecuilderJobs_la_CPPFLAGS = $ {BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} ${JobMarket_CFLAGS} -Dvmg_float=double -Dvmg_int=int $(VMG_CFLAGS)58 libMolecuilderJobs_la_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} ${JobMarket_CFLAGS} -Dvmg_float=double -Dvmg_int=int $(VMG_CFLAGS) 59 59 libMolecuilderJobs_la_LDFLAGS = $(AM_LDFLAGS) \ 60 60 $(BOOST_IOSTREAMS_LDFLAGS) \ -
src/Jobs/unittests/Makefile.am
r4c9101 ra91710 17 17 18 18 JOBSLIBS = \ 19 libUnitTest.la \ 20 ../libMolecuilder.la \ 19 21 ../libMolecuilderJobs.la \ 20 22 ../libMolecuilderFragmentationContainers.la \ … … 27 29 28 30 MPQCCommandJobUnitTest_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl 29 MPQCCommandJobUnitTest_CPPFLAGS = $ {BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS} ${JobMarket_CFLAGS}30 MPQCCommandJobUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\31 MPQCCommandJobUnitTest_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS} ${JobMarket_CFLAGS} 32 MPQCCommandJobUnitTest_SOURCES = \ 31 33 ../Jobs/unittests/MPQCCommandJobUnitTest.cpp \ 32 34 ../Jobs/unittests/MPQCCommandJobUnitTest.hpp -
src/LinkedCell/unittests/Makefile.am
r4c9101 ra91710 29 29 30 30 LINKEDCELLLIBS = \ 31 libUnitTest.la \ 32 ../libMolecuilder.la \ 31 33 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ 32 34 ${CodePatterns_LIBS} \ 33 35 $(BOOST_LIB) 34 36 35 linkedcellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\37 linkedcellUnitTest_SOURCES = \ 36 38 ../LinkedCell/unittests/linkedcellUnitTest.cpp \ 37 39 ../LinkedCell/unittests/linkedcellUnitTest.hpp … … 46 48 $(LINKEDCELLLIBS) 47 49 48 LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\50 LinkedCellUnitTest_SOURCES = \ 49 51 ../LinkedCell/unittests/LinkedCellUnitTest.cpp \ 50 52 ../LinkedCell/unittests/LinkedCellUnitTest.hpp \ … … 54 56 $(LINKEDCELLLIBS) 55 57 56 LinkedCell_ControllerUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\58 LinkedCell_ControllerUnitTest_SOURCES = \ 57 59 ../LinkedCell/unittests/LinkedCell_ControllerUnitTest.cpp \ 58 60 ../LinkedCell/unittests/LinkedCell_ControllerUnitTest.hpp \ … … 64 66 ../LinkedCell/unittests/stubs/WorldTimeStub.cpp \ 65 67 stubs/WorldStub.cpp \ 66 ../LinkedCell/PointCloudAdaptor.hpp \ 67 ../Box_BoundaryConditions.cpp \ 68 ../Box_BoundaryConditions.hpp 68 ../LinkedCell/PointCloudAdaptor.hpp 69 69 LinkedCell_ControllerUnitTest_LDADD = \ 70 ../libMolecuilderLinkedCell.la \ 70 ../libMolecuilderUI.la \ 71 ../libMolecuilder.la 72 if CONDJOBMARKET 73 LinkedCell_ControllerUnitTest_LDADD += \ 74 ../libMolecuilderJobs.la 75 endif 76 LinkedCell_ControllerUnitTest_LDADD += \ 71 77 $(LINKEDCELLLIBS) 72 78 73 LinkedCell_ModelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\79 LinkedCell_ModelUnitTest_SOURCES = \ 74 80 ../LinkedCell/unittests/LinkedCell_ModelUnitTest.cpp \ 75 81 ../LinkedCell/unittests/LinkedCell_ModelUnitTest.hpp \ … … 85 91 $(LINKEDCELLLIBS) 86 92 87 LinkedCell_ViewUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\93 LinkedCell_ViewUnitTest_SOURCES = \ 88 94 ../LinkedCell/unittests/LinkedCell_ViewUnitTest.cpp \ 89 95 ../LinkedCell/unittests/LinkedCell_ViewUnitTest.hpp \ -
src/Makefile.am
r4c9101 ra91710 10 10 EXTRA_DIST = 11 11 12 include Actions/Makefile.am 13 include Analysis/Makefile.am 14 include Atom/Makefile.am 15 include Element/Makefile.am 16 include Filling/Makefile.am 17 include Fragmentation/Makefile.am 18 include Fragmentation/Automation/Makefile.am 19 include Fragmentation/Summation/Containers/Makefile.am 20 include Fragmentation/Summation/Converter/Makefile.am 21 include Fragmentation/Summation/Makefile.am 22 include Fragmentation/Summation/SetValues/Makefile.am 23 include FunctionApproximation/Makefile.am 24 include Graph/Makefile.am 12 # libMolecuilder.la requires the libraries listed below 13 25 14 include Helpers/Makefile.am 26 include Jobs/Makefile.am27 28 if CONDPYTHON29 include Python/Makefile.am30 endif31 32 include LinkedCell/Makefile.am33 include Parameters/Makefile.am34 include Parser/Makefile.am35 include Potentials/Makefile.am36 include RandomNumbers/Makefile.am37 15 include Shapes/Makefile.am 38 16 include Tesselation/Makefile.am 39 include UIElements/Makefile.am 17 18 # then comes the library itself 40 19 41 20 AM_LDFLAGS = -ldl ${BOOST_LDFLAGS} ${CodePatterns_LDFLAGS} 42 AM_CPPFLAGS = ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} 21 AM_CPPFLAGS = \ 22 -I$(top_srcdir)/src/unittests \ 23 -I$(top_srcdir)/src/Actions \ 24 -I$(top_srcdir)/src/UIElements \ 25 -I$(top_srcdir)/LinearAlgebra/src \ 26 ${BOOST_CPPFLAGS} \ 27 ${CodePatterns_CFLAGS} 28 43 29 44 30 BONDSOURCE = \ … … 195 181 WorldTime.hpp 196 182 197 noinst_LTLIBRARIES += libMolecuilder.la183 lib_LTLIBRARIES += libMolecuilder.la 198 184 libMolecuilder_la_includedir = $(includedir)/MoleCuilder/ 199 185 libMolecuilder_la_LDFLAGS = \ … … 205 191 libMolecuilderTesselation.la \ 206 192 libMolecuilderShapes.la \ 193 libMolecuilderHelpers.la \ 207 194 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ 208 195 ${CodePatterns_LIBS} \ … … 228 215 ## library file (.so). The library ABI version is defined in configure.ac, so 229 216 ## that all version information is kept in one place. 230 #libMolecuilder_la_LDFLAGS= -version-info $(MOLECUILDER_SO_VERSION)217 libMolecuilder_la_LDFLAGS += -version-info $(MOLECUILDER_SO_VERSION) 231 218 232 219 ## The generated configuration header is installed in its own subdirectory of … … 251 238 pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc 252 239 253 254 INCLUDES = \ 255 -I$(top_srcdir)/src/unittests \ 256 -I$(top_srcdir)/src/Actions \ 257 -I$(top_srcdir)/src/UIElements \ 258 -I$(top_srcdir)/LinearAlgebra/src 240 # then we compile the remainder of all other libraries, especially 241 # libMolecuilderUI.la, which requires libMolecuilder.la on install 242 243 include Actions/Makefile.am 244 include Analysis/Makefile.am 245 include Atom/Makefile.am 246 include Element/Makefile.am 247 include Filling/Makefile.am 248 include Fragmentation/Makefile.am 249 include Fragmentation/Automation/Makefile.am 250 include Fragmentation/Summation/Containers/Makefile.am 251 include Fragmentation/Summation/Converter/Makefile.am 252 include Fragmentation/Summation/Makefile.am 253 include Fragmentation/Summation/SetValues/Makefile.am 254 include FunctionApproximation/Makefile.am 255 include Graph/Makefile.am 256 include Jobs/Makefile.am 257 258 if CONDPYTHON 259 include Python/Makefile.am 260 endif 261 262 include LinkedCell/Makefile.am 263 include Parameters/Makefile.am 264 include Parser/Makefile.am 265 include Potentials/Makefile.am 266 include RandomNumbers/Makefile.am 267 include UIElements/Makefile.am 259 268 260 269 bin_PROGRAMS += molecuilder … … 283 292 Actions/GlobalListOfActions.hpp \ 284 293 Actions/ActionHistory.hpp 285 pyMoleCuilder_la_CPPFLAGS = $ {BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} $(JobMarket_CFLAGS) -I$(PYTHON_INCLUDE_DIR)294 pyMoleCuilder_la_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} $(JobMarket_CFLAGS) -I$(PYTHON_INCLUDE_DIR) 286 295 pyMoleCuilder_la_LDFLAGS = -module -avoid-version -shared $(BOOST_PYTHON_LDFLAGS) 287 296 pyMoleCuilder_la_LIBADD = \ … … 299 308 molecuilder_LDFLAGS = \ 300 309 $(AM_LDFLAGS) \ 310 $(CodePatterns_LDFLAGS) \ 301 311 $(BOOST_FILESYSTEM_LDFLAGS) \ 302 312 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) \ … … 307 317 builder.cpp \ 308 318 builder_init.cpp \ 309 builder_init.hpp 319 builder_init.hpp \ 320 Python/PythonScripting.hpp 310 321 molecuilder_LDADD = \ 322 libMolecuilder.la \ 311 323 libMolecuilderUI.la 312 324 molecuilder_LDADD += \ 313 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \314 325 ${CodePatterns_LIBS} \ 315 326 $(BOOST_THREAD_LIBS) \ … … 347 358 $(BOOST_THREAD_LDFLAGS) 348 359 molecuildergui_LDADD = \ 360 libMolecuilder.la \ 349 361 libMolecuilderQtUI.la \ 350 362 libMolecuilderUI.la 351 363 molecuildergui_LDADD += \ 352 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \353 364 ${CodePatterns_LIBS} \ 354 365 $(BOOST_THREAD_LIBS) \ -
src/Parameters/Makefile.am
r4c9101 ra91710 33 33 Parameters/Parameter_impl.hpp \ 34 34 Parameters/ParameterInterface.hpp \ 35 Parameters/StreamOperators.hpp \ 35 36 Parameters/Validators/DiscreteValidator.hpp \ 36 37 Parameters/Validators/DiscreteValidator_impl.hpp \ -
src/Parameters/unittests/Makefile.am
r4c9101 ra91710 29 29 30 30 PARAMETERSLIBS = \ 31 libUnitTest.la \ 32 ../libMolecuilder.la \ 31 33 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ 32 34 ${CodePatterns_LIBS} \ … … 34 36 35 37 36 ContinuousValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\38 ContinuousValueTest_SOURCES = \ 37 39 ../Parameters/unittests/ContinuousValueTest.cpp \ 38 40 ../Parameters/unittests/ContinuousValueTest.hpp \ … … 47 49 $(PARAMETERSLIBS) 48 50 49 ContinuousParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\51 ContinuousParameterTest_SOURCES = \ 50 52 ../Parameters/unittests/ContinuousParameterTest.cpp \ 51 53 ../Parameters/unittests/ContinuousParameterTest.hpp \ … … 60 62 $(PARAMETERSLIBS) 61 63 62 DiscreteValueTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\64 DiscreteValueTest_SOURCES = \ 63 65 ../Parameters/unittests/DiscreteValueTest.cpp \ 64 66 ../Parameters/unittests/DiscreteValueTest.hpp \ … … 74 76 $(PARAMETERSLIBS) 75 77 76 DiscreteParameterTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\78 DiscreteParameterTest_SOURCES = \ 77 79 ../Parameters/unittests/DiscreteParameterTest.cpp \ 78 80 ../Parameters/unittests/DiscreteParameterTest.hpp \ … … 90 92 $(PARAMETERSLIBS) 91 93 92 Ops_ValidatorTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\94 Ops_ValidatorTest_SOURCES = \ 93 95 ../Parameters/unittests/Ops_ValidatorTest.cpp \ 94 96 ../Parameters/unittests/Ops_ValidatorTest.hpp \ -
src/Parser/Parameters/unittests/Makefile.am
r4c9101 ra91710 20 20 21 21 PARSERPARAMETERSLIBS = \ 22 libUnitTest.la \ 23 ../libMolecuilder.la \ 22 24 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ 23 25 ${CodePatterns_LIBS} \ … … 25 27 26 28 27 ParameterStorageUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\29 ParameterStorageUnitTest_SOURCES = \ 28 30 ../Parser/Parameters/unittests/ParameterStorageUnitTest.cpp \ 29 ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp \ 30 ../Parser/Parameters/ParameterStorage.cpp \ 31 ../Parser/Parameters/ParameterStorage.hpp \ 32 ../Parameters/Parameter.hpp \ 33 ../Parameters/Validators/DummyValidator.hpp \ 34 ../Parameters/Validators/RangeValidator.hpp \ 35 ../Parameters/Validators/RangeValidator_impl.hpp \ 36 ../Parameters/Validators/Validator.hpp \ 37 ../Parameters/Value.hpp \ 38 ../Parameters/Value_impl.hpp \ 39 ../Parameters/ValueInterface.hpp 31 ../Parser/Parameters/unittests/ParameterStorageUnitTest.hpp 40 32 ParameterStorageUnitTest_LDADD = \ 41 $(PARSERPARAMETERSLIBS) 33 ../libMolecuilderParser.la \ 34 $(PARSERPARAMETERSLIBS) 42 35 43 StringParameterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\36 StringParameterUnitTest_SOURCES = \ 44 37 ../Parser/Parameters/unittests/StringParameterUnitTest.cpp \ 45 ../Parser/Parameters/unittests/StringParameterUnitTest.hpp \ 46 ../Parameters/StreamOperators.hpp \ 47 ../Parameters/Validators/DiscreteValidator.hpp \ 48 ../Parameters/Validators/DiscreteValidator_impl.hpp \ 49 ../Parameters/Validators/DummyValidator.hpp \ 50 ../Parameters/Validators/RangeValidator.hpp \ 51 ../Parameters/Validators/RangeValidator_impl.hpp \ 52 ../Parameters/Validators/Validator.hpp \ 53 ../Parameters/Value.hpp \ 54 ../Parameters/Value_impl.hpp \ 55 ../Parameters/Value_string.hpp \ 56 ../Parameters/ValueInterface.hpp 38 ../Parser/Parameters/unittests/StringParameterUnitTest.hpp 57 39 StringParameterUnitTest_LDADD = \ 58 40 ../libMolecuilderParameters.la \ -
src/Parser/unittests/Makefile.am
r4c9101 ra91710 39 39 40 40 PARSERLIBS = \ 41 libUnitTest.la \ 42 ../libMolecuilder.la \ 41 43 ../libMolecuilderUI.la 42 44 if CONDJOBMARKET … … 50 52 51 53 52 ParserMpqcUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\54 ParserMpqcUnitTest_SOURCES = \ 53 55 ../Parser/unittests/ParserMpqcUnitTest.cpp \ 54 56 ../Parser/unittests/ParserMpqcUnitTest.hpp 55 57 ParserMpqcUnitTest_LDADD = ${PARSERLIBS} 56 58 57 ParserPcpUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\59 ParserPcpUnitTest_SOURCES = \ 58 60 ../Parser/unittests/ParserPcpUnitTest.cpp \ 59 61 ../Parser/unittests/ParserPcpUnitTest.hpp 60 62 ParserPcpUnitTest_LDADD = ${PARSERLIBS} 61 63 62 ParserPdbUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\64 ParserPdbUnitTest_SOURCES = \ 63 65 ../Parser/unittests/ParserPdbUnitTest.cpp \ 64 66 ../Parser/unittests/ParserPdbUnitTest.hpp 65 67 ParserPdbUnitTest_LDADD = ${PARSERLIBS} 66 68 67 ParserPsi3UnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\69 ParserPsi3UnitTest_SOURCES = \ 68 70 ../Parser/unittests/ParserPsi3UnitTest.cpp \ 69 71 ../Parser/unittests/ParserPsi3UnitTest.hpp 70 72 ParserPsi3UnitTest_LDADD = ${PARSERLIBS} 71 73 72 ParserTremoloUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\74 ParserTremoloUnitTest_SOURCES = \ 73 75 ../Parser/unittests/ParserTremoloUnitTest.cpp \ 74 76 ../Parser/unittests/ParserTremoloUnitTest.hpp 75 77 ParserTremoloUnitTest_LDADD = ${PARSERLIBS} 76 78 77 ParserTremolo_ElementKeysUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\79 ParserTremolo_ElementKeysUnitTest_SOURCES = \ 78 80 ../Parser/unittests/ParserTremolo_ElementKeysUnitTest.cpp \ 79 81 ../Parser/unittests/ParserTremolo_ElementKeysUnitTest.hpp 80 82 ParserTremolo_ElementKeysUnitTest_LDADD = ${PARSERLIBS} 81 83 82 ParserXmlUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\84 ParserXmlUnitTest_SOURCES = \ 83 85 ../Parser/unittests/ParserXmlUnitTest.cpp \ 84 86 ../Parser/unittests/ParserXmlUnitTest.hpp 85 87 ParserXmlUnitTest_LDADD = ${PARSERLIBS} 86 88 87 ParserXyzUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\89 ParserXyzUnitTest_SOURCES = \ 88 90 ../Parser/unittests/ParserXyzUnitTest.cpp \ 89 91 ../Parser/unittests/ParserXyzUnitTest.hpp -
src/Potentials/Specifics/unittests/Makefile.am
r4c9101 ra91710 37 37 38 38 POTENTIALSSPECIFICSLIBS = \ 39 libUnitTest.la \ 40 ../libMolecuilder.la \ 39 41 ../libMolecuilderPotentials.la \ 40 42 ../libMolecuilderFragmentation.la \ … … 48 50 $(BOOST_LIB) 49 51 50 ConstantPotentialUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\52 ConstantPotentialUnitTest_SOURCES = \ 51 53 ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.cpp \ 52 54 ../Potentials/Specifics/unittests/ConstantPotentialUnitTest.hpp 53 55 ConstantPotentialUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS} 54 56 55 FourBodyPotential_ImproperUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\57 FourBodyPotential_ImproperUnitTest_SOURCES = \ 56 58 ../Potentials/Specifics/unittests/FourBodyPotential_ImproperUnitTest.cpp \ 57 59 ../Potentials/Specifics/unittests/FourBodyPotential_ImproperUnitTest.hpp 58 60 FourBodyPotential_ImproperUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS} 59 61 60 FourBodyPotential_TorsionUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\62 FourBodyPotential_TorsionUnitTest_SOURCES = \ 61 63 ../Potentials/Specifics/unittests/FourBodyPotential_TorsionUnitTest.cpp \ 62 64 ../Potentials/Specifics/unittests/FourBodyPotential_TorsionUnitTest.hpp 63 65 FourBodyPotential_TorsionUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS} 64 66 65 ManyBodyPotential_TersoffUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\67 ManyBodyPotential_TersoffUnitTest_SOURCES = \ 66 68 ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.cpp \ 67 69 ../Potentials/Specifics/unittests/ManyBodyPotential_TersoffUnitTest.hpp 68 70 ManyBodyPotential_TersoffUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS} 69 71 70 PairPotential_HarmonicUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\72 PairPotential_HarmonicUnitTest_SOURCES = \ 71 73 ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.cpp \ 72 74 ../Potentials/Specifics/unittests/PairPotential_HarmonicUnitTest.hpp 73 75 PairPotential_HarmonicUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS} 74 76 75 PairPotential_LennardJonesUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\77 PairPotential_LennardJonesUnitTest_SOURCES = \ 76 78 ../Potentials/Specifics/unittests/PairPotential_LennardJonesUnitTest.cpp \ 77 79 ../Potentials/Specifics/unittests/PairPotential_LennardJonesUnitTest.hpp 78 80 PairPotential_LennardJonesUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS} 79 81 80 PairPotential_MorseUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\82 PairPotential_MorseUnitTest_SOURCES = \ 81 83 ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.cpp \ 82 84 ../Potentials/Specifics/unittests/PairPotential_MorseUnitTest.hpp 83 85 PairPotential_MorseUnitTest_LDADD = ${POTENTIALSSPECIFICSLIBS} 84 86 85 ThreeBodyPotential_AngleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\87 ThreeBodyPotential_AngleUnitTest_SOURCES = \ 86 88 ../Potentials/Specifics/unittests/ThreeBodyPotential_AngleUnitTest.cpp \ 87 89 ../Potentials/Specifics/unittests/ThreeBodyPotential_AngleUnitTest.hpp -
src/Potentials/unittests/Makefile.am
r4c9101 ra91710 22 22 23 23 POTENTIALSLIBS = \ 24 libUnitTest.la \ 25 ../libMolecuilder.la \ 24 26 ../libMolecuilderPotentials.la \ 25 27 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ … … 28 30 $(BOOST_LIB) 29 31 30 CompoundPotentialUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\32 CompoundPotentialUnitTest_SOURCES = \ 31 33 ../Potentials/unittests/CompoundPotentialUnitTest.cpp \ 32 34 ../Potentials/unittests/CompoundPotentialUnitTest.hpp 33 35 CompoundPotentialUnitTest_LDADD = \ 36 libUnitTest.la \ 34 37 ../libMolecuilderPotentials.la \ 35 38 ../libMolecuilderFragmentation.la \ … … 43 46 $(BOOST_LIB) 44 47 45 PartialNucleiChargeFitterUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\48 PartialNucleiChargeFitterUnitTest_SOURCES = \ 46 49 ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.cpp \ 47 50 ../Potentials/unittests/PartialNucleiChargeFitterUnitTest.hpp … … 50 53 ${POTENTIALSLIBS} 51 54 52 SerializablePotentialUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\55 SerializablePotentialUnitTest_SOURCES = \ 53 56 ../Potentials/unittests/SerializablePotentialUnitTest.cpp \ 54 57 ../Potentials/unittests/SerializablePotentialUnitTest.hpp \ -
src/RandomNumbers/Makefile.am
r4c9101 ra91710 1 1 # PLEASE adhere to the alphabetical ordering in this Makefile! 2 2 # Also indentation by a single tab 3 4 #INCLUDES = -I$(top_srcdir)/src5 3 6 4 # Position-Independent Code necessary for shared library … … 42 40 43 41 lib_LTLIBRARIES += libMolecuilderRandomNumbers.la 44 libMolecuilderRandomNumbers_includedir = $(includedir)/MoleCuilder/ 45 nobase_libMolecuilderRandomNumbers_include_HEADERS = ${RANDOMHEADER} ${RANDOMDEFS} 42 libMolecuilderRandomNumbers_la_includedir = $(includedir)/MoleCuilder/ 43 libMolecuilderRandomNumbers_la_LIBADD = \ 44 ${CodePatterns_LIBS} 45 nobase_libMolecuilderRandomNumbers_la_include_HEADERS = ${RANDOMHEADER} ${RANDOMDEFS} 46 46 47 47 ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la" -
src/RandomNumbers/unittests/Makefile.am
r4c9101 ra91710 1 1 # PLEASE adhere to the alphabetical ordering in this Makefile! 2 2 # Also indentation by a single tab 3 4 #INCLUDES = -I$(top_srcdir)/src5 3 6 4 #AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl ${BOOST_LDFLAGS} … … 30 28 31 29 RANDOMNUMBERLIBS = \ 30 libUnitTest.la \ 31 ../libMolecuilder.la \ 32 32 ../libMolecuilderRandomNumbers.la \ 33 33 ${CodePatterns_LIBS} \ 34 34 $(BOOST_LIB) 35 35 36 RandomNumberDistributionFactoryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\36 RandomNumberDistributionFactoryUnitTest_SOURCES = \ 37 37 ../RandomNumbers/unittests/RandomNumberDistributionFactoryUnitTest.cpp \ 38 38 ../RandomNumbers/unittests/RandomNumberDistributionFactoryUnitTest.hpp 39 39 RandomNumberDistributionFactoryUnitTest_LDADD = ${RANDOMNUMBERLIBS} 40 40 41 RandomNumberEngineFactoryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\41 RandomNumberEngineFactoryUnitTest_SOURCES = \ 42 42 ../RandomNumbers/unittests/RandomNumberEngineFactoryUnitTest.cpp \ 43 43 ../RandomNumbers/unittests/RandomNumberEngineFactoryUnitTest.hpp 44 44 RandomNumberEngineFactoryUnitTest_LDADD = ${RANDOMNUMBERLIBS} 45 45 46 RandomNumberGeneratorFactoryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\46 RandomNumberGeneratorFactoryUnitTest_SOURCES = \ 47 47 ../RandomNumbers/unittests/RandomNumberGeneratorFactoryUnitTest.cpp \ 48 48 ../RandomNumbers/unittests/RandomNumberGeneratorFactoryUnitTest.hpp 49 49 RandomNumberGeneratorFactoryUnitTest_LDADD = ${RANDOMNUMBERLIBS} 50 50 51 RandomNumberGeneratorUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\51 RandomNumberGeneratorUnitTest_SOURCES = \ 52 52 ../RandomNumbers/unittests/RandomNumberGeneratorUnitTest.cpp \ 53 53 ../RandomNumbers/unittests/RandomNumberGeneratorUnitTest.hpp -
src/Shapes/Makefile.am
r4c9101 ra91710 21 21 lib_LTLIBRARIES += libMolecuilderShapes.la 22 22 libMolecuilderShapes_la_includedir = $(includedir)/MoleCuilder/ 23 libMolecuilderShapes_la_LIBADD = \ 24 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ 25 ${CodePatterns_LIBS} 23 26 nobase_libMolecuilderShapes_la_include_HEADERS = ${SHAPEHEADER} 24 27 -
src/Shapes/unittests/Makefile.am
r4c9101 ra91710 29 29 30 30 SHAPELIBS = \ 31 ../libMolecuilderShapes.la \ 31 libUnitTest.la \ 32 ../libMolecuilder.la \ 33 ../libMolecuilderUI.la \ 32 34 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ 33 35 ${CodePatterns_LIBS} 34 36 # $(BOOST_LIB) 35 37 36 BaseShapesUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\38 BaseShapesUnitTest_SOURCES = \ 37 39 ../Shapes/unittests/BaseShapesUnitTest.cpp \ 38 40 ../Shapes/unittests/BaseShapesUnitTest.hpp \ 39 41 ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \ 40 42 ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp 41 nodist_BaseShapesUnitTest_SOURCES = \ 42 ../Helpers/defs.hpp \ 43 ../Helpers/defs.cpp 44 BaseShapesUnitTest_LDADD = $(SHAPELIBS) 43 BaseShapesUnitTest_LDADD = \ 44 ../libMolecuilderShapes.la \ 45 $(SHAPELIBS) 45 46 46 ShapeFactoryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\47 ShapeFactoryUnitTest_SOURCES = \ 47 48 ../Shapes/unittests/ShapeFactoryUnitTest.cpp \ 48 49 ../Shapes/unittests/ShapeFactoryUnitTest.hpp \ … … 51 52 ../Shapes/unittests/stubs/moleculeStub.cpp \ 52 53 ../Shapes/unittests/stubs/WorldSelectedMoleculesStub.cpp 53 nodist_ShapeFactoryUnitTest_SOURCES = \54 ../Helpers/defs.hpp \55 ../Helpers/defs.cpp \56 ../Shapes/ShapeFactory.cpp \57 ../Shapes/ShapeFactory.hpp58 54 ShapeFactoryUnitTest_LDADD = \ 59 ../libMolecuilder Element.la \55 ../libMolecuilderShapes.la \ 60 56 $(SHAPELIBS) 61 57 62 ShapeOpsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\58 ShapeOpsUnitTest_SOURCES = \ 63 59 ../Shapes/unittests/ShapeOpsUnitTest.cpp \ 64 60 ../Shapes/unittests/ShapeOpsUnitTest.hpp \ 65 61 ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \ 66 62 ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp 67 nodist_ShapeOpsUnitTest_SOURCES = \ 68 ../Helpers/defs.hpp \ 69 ../Helpers/defs.cpp 70 ShapeOpsUnitTest_LDADD = $(SHAPELIBS) 63 ShapeOpsUnitTest_LDADD = \ 64 ../libMolecuilderShapes.la \ 65 $(SHAPELIBS) 71 66 72 ShapeRegistryUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\67 ShapeRegistryUnitTest_SOURCES = \ 73 68 ../Shapes/unittests/ShapeRegistryUnitTest.cpp \ 74 69 ../Shapes/unittests/ShapeRegistryUnitTest.hpp \ 75 70 ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \ 76 71 ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp 77 nodist_ShapeRegistryUnitTest_SOURCES = \ 78 ../Helpers/defs.hpp \ 79 ../Helpers/defs.cpp 80 ShapeRegistryUnitTest_LDADD = $(SHAPELIBS) 72 ShapeRegistryUnitTest_LDADD = \ 73 ../libMolecuilderShapes.la \ 74 $(SHAPELIBS) 81 75 82 Shape_HomogeneousPointsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\76 Shape_HomogeneousPointsUnitTest_SOURCES = \ 83 77 ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.cpp \ 84 78 ../Shapes/unittests/Shape_HomogeneousPointsUnitTest.hpp \ 85 79 ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \ 86 80 ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp 87 nodist_Shape_HomogeneousPointsUnitTest_SOURCES = \ 88 ../Helpers/defs.hpp \ 89 ../Helpers/defs.cpp 90 Shape_HomogeneousPointsUnitTest_LDADD = $(SHAPELIBS) 81 Shape_HomogeneousPointsUnitTest_LDADD = \ 82 ../libMolecuilderShapes.la \ 83 $(SHAPELIBS) 91 84 92 85 -
src/Tesselation/unittests/Makefile.am
r4c9101 ra91710 22 22 23 23 TESSELATIONLIBS = \ 24 libUnitTest.la \ 25 ../libMolecuilder.la \ 24 26 ../libMolecuilderUI.la \ 25 27 ../libMolecuilder.la … … 34 36 35 37 36 TesselationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\38 TesselationUnitTest_SOURCES = \ 37 39 ../Tesselation/unittests/TesselationUnitTest.cpp \ 38 40 ../Tesselation/unittests/TesselationUnitTest.hpp 39 41 TesselationUnitTest_LDADD = ${TESSELATIONLIBS} 40 42 41 Tesselation_BoundaryTriangleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\43 Tesselation_BoundaryTriangleUnitTest_SOURCES = \ 42 44 ../Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.cpp \ 43 45 ../Tesselation/unittests/Tesselation_BoundaryTriangleUnitTest.hpp 44 46 Tesselation_BoundaryTriangleUnitTest_LDADD = ${TESSELATIONLIBS} 45 47 46 Tesselation_InOutsideUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\48 Tesselation_InOutsideUnitTest_SOURCES = \ 47 49 ../Tesselation/unittests/Tesselation_InsideOutsideUnitTest.cpp \ 48 50 ../Tesselation/unittests/Tesselation_InsideOutsideUnitTest.hpp -
src/UIElements/CommandLineUI/unittests/Makefile.am
r4c9101 ra91710 15 15 noinst_PROGRAMS += $(UIELEMENTSCOMMANDLINEPARSERTESTS) 16 16 17 CommandLineParser_ActionRegistry_ConsistencyUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\17 CommandLineParser_ActionRegistry_ConsistencyUnitTest_SOURCES = \ 18 18 ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistencyUnitTest.cpp \ 19 19 ../UIElements/CommandLineUI/unittests/CommandLineParser_ActionRegistry_ConsistencyUnitTest.hpp 20 20 CommandLineParser_ActionRegistry_ConsistencyUnitTest_LDADD = \ 21 libUnitTest.la \ 22 ../libMolecuilder.la \ 21 23 ../libMolecuilderUI.la 22 24 if CONDJOBMARKET -
src/UIElements/Makefile.am
r4c9101 ra91710 226 226 lib_LTLIBRARIES += libMolecuilderUI.la 227 227 libMolecuilderUI_la_includedir = $(includedir)/MoleCuilder/ 228 libMolecuilderUI_la_CPPFLAGS = $ {BOOST_CPPFLAGS} ${CodePatterns_CFLAGS}228 libMolecuilderUI_la_CPPFLAGS = $(AM_CPPFLAGS) ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} 229 229 if CONDJOBMARKET 230 230 libMolecuilderUI_la_CPPFLAGS += ${JobMarket_CFLAGS} … … 344 344 345 345 libMolecuilderQtUI_la_includedir = $(includedir)/MoleCuilder/ 346 libMolecuilderQtUI_la_CPPFLAGS = $ {QT_CFLAGS} ${GLU_CXXFLAGS} ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} ${JobMarket_CFLAGS} $(mol_ac_qwt_cxxflags)346 libMolecuilderQtUI_la_CPPFLAGS = $(AM_CPPFLAGS) ${QT_CFLAGS} ${GLU_CXXFLAGS} ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} ${JobMarket_CFLAGS} $(mol_ac_qwt_cxxflags) 347 347 libMolecuilderQtUI_la_LDFLAGS = $(AM_LDFLAGS) $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_RANDOM_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(mol_ac_qwt_ldflags) 348 348 -
src/UIElements/Menu/unittests/Makefile.am
r4c9101 ra91710 19 19 20 20 MENULIBS = \ 21 libUnitTest.la \ 22 ../libMolecuilder.la \ 21 23 ../libMolecuilderUI.la 22 24 if CONDJOBMARKET … … 29 31 $(BOOST_LIB) 30 32 31 MenuDescriptionUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\33 MenuDescriptionUnitTest_SOURCES = \ 32 34 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.cpp \ 33 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp \ 34 ../UIElements/Menu/MenuDescription.cpp \ 35 ../UIElements/Menu/MenuDescription.hpp 35 ../UIElements/Menu/unittests/MenuDescriptionUnitTest.hpp 36 36 MenuDescriptionUnitTest_CXXFLAGS = -I$(top_srcdir)/src/UIElements 37 37 MenuDescriptionUnitTest_LDADD = $(MENULIBS) 38 38 39 MenuDescription_ActionRegistry_ConsistencyUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\39 MenuDescription_ActionRegistry_ConsistencyUnitTest_SOURCES = \ 40 40 ../UIElements/Menu/unittests/MenuDescription_ActionRegistry_ConsistencyUnitTest.cpp \ 41 41 ../UIElements/Menu/unittests/MenuDescription_ActionRegistry_ConsistencyUnitTest.hpp -
src/UIElements/Views/Qt4/Plotting/Makefile.am
r4c9101 ra91710 37 37 38 38 libMolecuilderQwtUI_la_includedir = $(includedir)/MoleCuilder/ 39 libMolecuilderQwtUI_la_CPPFLAGS = $ {QT_CFLAGS} ${GLU_CXXFLAGS} ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} ${JobMarket_CFLAGS} $(mol_ac_qwt_cxxflags)39 libMolecuilderQwtUI_la_CPPFLAGS = $(AM_CPPFLAGS) ${QT_CFLAGS} ${GLU_CXXFLAGS} ${BOOST_CPPFLAGS} ${CodePatterns_CFLAGS} ${JobMarket_CFLAGS} $(mol_ac_qwt_cxxflags) 40 40 libMolecuilderQwtUI_la_LDFLAGS = $(AM_LDFLAGS) $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_RANDOM_LDFLAGS) $(BOOST_SYSTEM_LDFLAGS) $(BOOST_THREAD_LDFLAGS) $(mol_ac_qwt_ldflags) 41 41 -
src/builder_init.cpp
r4c9101 ra91710 54 54 #include "CodePatterns/Log.hpp" 55 55 56 #include "Graph/BondGraph.hpp" 57 58 #include "Parser/ChangeTracker.hpp" 59 #include "Parser/FormatParserStorage.hpp" 56 //#include "Graph/BondGraph.hpp" 60 57 61 58 #include "UIElements/UIFactory.hpp" … … 69 66 70 67 #include "version.h" 71 72 #include "World.hpp"73 68 74 69 #include <boost/filesystem.hpp> … … 116 111 void initUI(int argc, char **argv) 117 112 { 118 std::string BondGraphFileName("\n");113 //std::string BondGraphFileName("\n"); 119 114 // Parse command line options and if present create respective UI 120 115 // construct bond graph 121 if (boost::filesystem::exists(BondGraphFileName)) {122 std::ifstream input(BondGraphFileName.c_str());123 if ((input.good()) && (World::getInstance().getBondGraph()->LoadBondLengthTable(input))) {124 LOG(0, "Bond length table loaded successfully.");125 } else {126 ELOG(1, "Bond length table loading failed.");127 }128 input.close();129 }116 //if (boost::filesystem::exists(BondGraphFileName)) { 117 // std::ifstream input(BondGraphFileName.c_str()); 118 // if ((input.good()) && (World::getInstance().getBondGraph()->LoadBondLengthTable(input))) { 119 // LOG(0, "Bond length table loaded successfully."); 120 // } else { 121 // ELOG(1, "Bond length table loading failed."); 122 // } 123 // input.close(); 124 //} 130 125 131 126 // if we have python, autoexecute a molecuilder script in current folder -
src/documentation/install.dox
r4c9101 ra91710 64 64 * -# autotools: autoconf automake autoheader autoconf libtool 65 65 * 66 * Under Ubuntu 14.04 the required packages remain the same but the following 67 * notes apply: 68 * -# boost must be at least 1.50 as there is some bug with recognizing 69 * pthreads with the new gcc version. 70 * -# no need to compile VTK on your own, just use the VTK-5.8 that comes with 71 * this Ubuntu version. 72 * -# note that prior to 1.4.7 Ubuntu 14.04 is not supported and requires some 73 * changes in the automake/autoconf parts. 74 * 66 75 * \subsection install-prerequisites-other Other packages 67 76 * … … 333 342 * from a distributed archive. This is checked for each release version. 334 343 * 335 * \date 2014-0 3-10344 * \date 2014-08-21 336 345 */ -
src/unittests/Makefile.am
r4c9101 ra91710 7 7 XFAIL_TESTS = 8 8 MOSTLYCLEANFILES = 9 noinst_LTLIBRARIES = 10 11 #AUTOMAKE_OPTIONS = no-dependencies 9 12 10 13 if CONDCPPUNIT … … 40 43 include ../../src/UIElements/Menu/unittests/Makefile.am 41 44 42 INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src43 44 45 AM_LDFLAGS = \ 45 46 ${CodePatterns_LIBS} \ 46 47 $(CPPUNIT_LIBS) \ 47 48 -ldl 48 AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}49 AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS} 49 50 50 51 GENERALTESTS = \ … … 68 69 endif 69 70 71 noinst_LTLIBRARIES += libUnitTest.la 72 libUnitTest_la_LDFLAGS = \ 73 $(AM_LDFLAGS) 74 libUnitTest_la_LIBADD = 75 76 #nobase_libUnitTest_la_include_HEADERS = 77 78 ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la" 79 ## target. Note that @MOLECUILDER_API_VERSION@ is not interpreted by Automake and 80 ## will therefore be treated as if it were literally part of the target name, 81 ## and the variable name derived from that. 82 ## The file extension .cc is recognized by Automake, and makes it produce 83 ## rules which invoke the C++ compiler to produce a libtool object file (.lo) 84 ## from each source file. Note that it is not necessary to list header files 85 ## which are already listed elsewhere in a _HEADERS variable assignment. 86 libUnitTest_la_SOURCES = UnitTestMain.cpp 87 88 ## Instruct libtool to include ABI version information in the generated shared 89 ## library file (.so). The library ABI version is defined in configure.ac, so 90 ## that all version information is kept in one place. 91 #libUnitTest_la_LDFLAGS = -version-info $(MOLECUILDER_SO_VERSION) 92 93 ## The generated configuration header is installed in its own subdirectory of 94 ## $(libdir). The reason for this is that the configuration information put 95 ## into this header file describes the target platform the installed library 96 ## has been built for. Thus the file must not be installed into a location 97 ## intended for architecture-independent files, as defined by the Filesystem 98 ## Hierarchy Standard (FHS). 99 ## The nodist_ prefix instructs Automake to not generate rules for including 100 ## the listed files in the distribution on 'make dist'. Files that are listed 101 ## in _HEADERS variables are normally included in the distribution, but the 102 ## configuration header file is generated at configure time and should not be 103 ## shipped with the source tarball. 104 #libUnitTest_la_libincludedir = $(libdir)/MoleCuilder/include 105 #nodist_libUnitTest_la_libinclude_HEADERS = $(top_builddir)/libmolecuilder_config.h 106 107 ## Install the generated pkg-config file (.pc) into the expected location for 108 ## architecture-dependent package configuration information. Occasionally, 109 ## pkg-config files are also used for architecture-independent data packages, 110 ## in which case the correct install location would be $(datadir)/pkgconfig. 111 #pkgconfigdir = $(libdir)/pkgconfig 112 #pkgconfig_DATA = $(top_builddir)/MoleCuilder.pc 113 70 114 71 115 BOOST_LIB = \ … … 83 127 84 128 ALLLIBS = \ 129 libUnitTest.la \ 130 ../libMolecuilder.la \ 85 131 ../libMolecuilderUI.la 86 132 if CONDJOBMARKET … … 146 192 147 193 148 BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\194 BoxUnitTest_SOURCES = \ 149 195 BoxUnitTest.cpp \ 150 196 BoxUnitTest.hpp \ … … 154 200 ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp 155 201 BoxUnitTest_LDADD = \ 156 ../libMolecuilder.la \ 157 ../libMolecuilderShapes.la \ 158 ../libMolecuilderHelpers.la \ 159 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \ 160 ${CodePatterns_LIBS} \ 161 $(BOOST_LIB) 162 163 AtomIdSetUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 202 $(ALLLIBS) \ 203 ../libMolecuilderShapes.la \ 204 ../libMolecuilderHelpers.la 205 206 AtomIdSetUnitTest_SOURCES = \ 164 207 AtomIdSetUnitTest.cpp \ 165 208 AtomIdSetUnitTest.hpp 166 209 AtomIdSetUnitTest_LDADD = $(ALLLIBS) 167 210 168 Box_BoundaryConditionsTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\211 Box_BoundaryConditionsTest_SOURCES = \ 169 212 Box_BoundaryConditionsUnitTest.cpp \ 170 Box_BoundaryConditionsUnitTest.hpp \ 171 ../Box_BoundaryConditions.cpp \ 172 ../Box_BoundaryConditions.hpp 213 Box_BoundaryConditionsUnitTest.hpp 173 214 Box_BoundaryConditionsTest_LDADD = \ 174 ${CodePatterns_LIBS} \ 175 $(BOOST_LIB) 176 177 FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 215 $(ALLLIBS) \ 216 ../libMolecuilderShapes.la \ 217 ../libMolecuilderHelpers.la 218 219 FormulaUnittest_SOURCES = \ 178 220 FormulaUnitTest.cpp \ 179 221 FormulaUnitTest.hpp 180 222 FormulaUnittest_LDADD = $(ALLLIBS) 181 223 182 ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\224 ListOfBondsUnitTest_SOURCES = \ 183 225 ListOfBondsUnitTest.cpp \ 184 226 ListOfBondsUnitTest.hpp 185 227 ListOfBondsUnitTest_LDADD = $(ALLLIBS) 186 228 187 MoleculeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\229 MoleculeUnitTest_SOURCES = \ 188 230 MoleculeUnitTest.cpp \ 189 231 MoleculeUnitTest.hpp … … 193 235 ../libMolecuilderHelpers.la 194 236 195 WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp\237 WorldTimeUnitTest_SOURCES = \ 196 238 WorldTimeUnitTest.cpp \ 197 WorldTimeUnitTest.hpp \ 198 ../WorldTime.cpp \ 199 ../WorldTime.hpp 200 WorldTimeUnitTest_LDADD = ${BOOST_LIB} 239 WorldTimeUnitTest.hpp 240 WorldTimeUnitTest_LDADD = \ 241 $(ALLLIBS) \ 242 ../libMolecuilderShapes.la \ 243 ../libMolecuilderHelpers.la 201 244 202 245 -
tests/JobMarket/Makefile.am
r4c9101 ra91710 2 2 3 3 if CONDJOBMARKET 4 mpqc_SOURCES = $(srcdir)/mpqc.cpp5 mpqc_CPPFLAGS = $ {CodePatterns_CFLAGS} $(BOOST_CPPFLAGS)4 mpqc_SOURCES = mpqc.cpp 5 mpqc_CPPFLAGS = $(AM_CPPFLAGS) ${CodePatterns_CFLAGS} $(BOOST_CPPFLAGS) 6 6 mpqc_LDADD = \ 7 7 ${CodePatterns_LIBS}
Note:
See TracChangeset
for help on using the changeset viewer.