Skip to content

Commit 50c6ce3

Browse files
committed
last changes before release
1 parent b1e21de commit 50c6ce3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
mkdir -p build && cd build
55
cmake -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)
99
else
1010
make -j$1

doc/doxygen/doxygen.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ file(GLOB SOURCES "*.cpp")
22
add_library(vmc SHARED ${SOURCES})
33
target_link_libraries(vmc "${MCI_LIBRARY_DIR}" "${NFM_LIBRARY_DIR}" "${GSL_LIBRARIES}" "${MPI_CXX_LIBRARIES}") # shared libs
44
add_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

0 commit comments

Comments
 (0)