File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 44mkdir -p build && cd build
55cmake -DCMAKE_CXX_COMPILER=" ${CXX_COMPILER} " -DUSER_CXX_FLAGS=" ${CXX_FLAGS} " -DUSE_COVERAGE=" ${USE_COVERAGE} " -DUSE_MPI=" ${USE_MPI} " -DMCI_ROOT_DIR=" ${MCI_ROOT} " -DNFM_ROOT_DIR=" ${NFM_ROOT} " -DGSL_ROOT_DIR=" ${GSL_ROOT} " ..
66
7- if [ " $1 " == " " ]; then
7+ if [ " $1 " = " " ]; then
88 make -j$( nproc 2> /dev/null || sysctl -n hw.ncpu 2> /dev/null || getconf _NPROCESSORS_ONLN 2> /dev/null)
99else
1010 make -j$1
Original file line number Diff line number Diff line change @@ -791,7 +791,7 @@ WARN_LOGFILE =
791791# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
792792# Note: If this tag is empty the current directory is searched.
793793
794- INPUT = "../../include" \
794+ INPUT = "../../include/vmc " \
795795 "../../src" \
796796 "doxygen_stl.cpp"
797797
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ file(GLOB SOURCES "*.cpp")
22add_library (vmc SHARED ${SOURCES} )
33target_link_libraries (vmc "${MCI_LIBRARY_DIR} " "${NFM_LIBRARY_DIR} " "${GSL_LIBRARIES} " "${MPI_CXX_LIBRARIES} " ) # shared libs
44add_library (vmc_static STATIC ${SOURCES} )
5- target_link_libraries (vmc_static "${MCI_STATIC_LIBRARY_DIR} " "${NFM_STATIC_LIBRARY_DIR} " "{$ GSL_LIBRARIES}" "${MPI_CXX_LIBRARIES} " ) # static (+ some shared) libs
5+ target_link_libraries (vmc_static "${MCI_STATIC_LIBRARY_DIR} " "${NFM_STATIC_LIBRARY_DIR} " "${ GSL_LIBRARIES} " "${MPI_CXX_LIBRARIES} " ) # static (+ some shared) libs
You can’t perform that action at this time.
0 commit comments