Skip to content

Commit 33390bc

Browse files
committed
feat: add as a geos submodule.
1 parent 9d885d9 commit 33390bc

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

hostconfigs/apple/macOS_base.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
message( "this hostconfig assumes you are using homebrew")
2-
message( "brew install bison cmake gcc git-lfs open-mpi openblas python3")
2+
message( "brew install bison cmake gcc git-lfs open-mpi openblas python3 llvm cppcheck lcov")
33

44
message( "CMAKE_SYSTEM_PROCESSOR = ${CMAKE_SYSTEM_PROCESSOR}" )
55
message("CONFIG_NAME = ${CONFIG_NAME}")

src/CMakeLists.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ set( hpcReact_headers
1212
reactions/bulkGeneric/SpeciesUtilities.hpp
1313
)
1414

15-
set( hpcReact_sources
16-
)
15+
set( hpcReact_sources)
1716

1817
find_package(LAPACK REQUIRED)
1918
find_package(BLAS REQUIRED)
@@ -35,11 +34,13 @@ blt_add_library( NAME hpcReact
3534

3635
target_include_directories( hpcReact
3736
INTERFACE
38-
$<BUILD_INTERFACE:${CMAKE_BINARY_DIR}/include>
39-
$<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}/src>
37+
$<BUILD_INTERFACE:${CMAKE_BINARY_DIR}../include>
38+
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
4039
$<INSTALL_INTERFACE:include> )
4140

4241
blt_print_target_properties( TARGET hpcReact )
42+
message(STATUS "HPCReact/src CMAKE_CURRENT_SOURCE_DIR: ${CMAKE_CURRENT_SOURCE_DIR}")
43+
4344
# install( FILES ${hpcReact_headers}
4445
# DESTINATION include )
4546

0 commit comments

Comments
 (0)