Skip to content

Commit 01670a2

Browse files
committed
Updated references to submodule directory
1 parent 2ec245c commit 01670a2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ endif()
5151
set(StochTree_HEADER_DIR ${PROJECT_SOURCE_DIR}/include)
5252

5353
# boost.math header file directory
54-
set(BOOSTMATH_HEADER_DIR ${PROJECT_SOURCE_DIR}/dependencies/boost_math/include)
54+
set(BOOSTMATH_HEADER_DIR ${PROJECT_SOURCE_DIR}/deps/boost_math/include)
5555

5656
# Eigen header file directory
57-
set(EIGEN_HEADER_DIR ${PROJECT_SOURCE_DIR}/dependencies/eigen)
57+
set(EIGEN_HEADER_DIR ${PROJECT_SOURCE_DIR}/deps/eigen)
5858

5959
# Library directory
6060
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/build)
@@ -87,7 +87,7 @@ endif()
8787
# Python shared library
8888
if (BUILD_PYTHON)
8989
# Add pybind11 module
90-
add_subdirectory(dependencies/pybind11)
90+
add_subdirectory(deps/pybind11)
9191
pybind11_add_module(stochtree_cpp src/py_stochtree.cpp)
9292

9393
# Link to C++ source and headers

include/stochtree/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
#include <vector>
2929

3030
#define FMT_HEADER_ONLY
31-
#include "../../dependencies/fast_double_parser/include/fast_double_parser.h"
32-
#include "../../dependencies/fmt/include/fmt/format.h"
31+
#include "../../deps/fast_double_parser/include/fast_double_parser.h"
32+
#include "../../deps/fmt/include/fmt/format.h"
3333

3434
#ifdef _MSC_VER
3535
#include <intrin.h>

src/Makevars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# package root
22
PKGROOT=..
33

4-
PKG_CPPFLAGS= -I$(PKGROOT)/include -I$(PKGROOT)/dependencies/boost_math/include -I$(PKGROOT)/dependencies/eigen
4+
PKG_CPPFLAGS= -I$(PKGROOT)/include -I$(PKGROOT)/deps/boost_math/include -I$(PKGROOT)/deps/eigen
55

66
CXX_STD=CXX17
77

0 commit comments

Comments
 (0)