-
Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
20 lines (17 loc) · 840 Bytes
/
CMakeLists.txt
File metadata and controls
20 lines (17 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#//////////////////////////////////////////////////////////////////////////////////////
#// This file is distributed under the University of Illinois/NCSA Open Source License.
#// See LICENSE file in top directory for details.
#//
#// Copyright (c) 2021 QMCPACK developers.
#//
#// File developed by: Ye Luo, yeluo@anl.gov, Argonne National Laboratory
#//
#// File created by: Ye Luo, yeluo@anl.gov, Argonne National Laboratory
#//////////////////////////////////////////////////////////////////////////////////////
set(NUMERICS_SRCS SmoothFunctions.cpp OneDimGridFactory.cpp SoaSphericalTensor.cpp)
add_library(qmcnumerics ${NUMERICS_SRCS})
target_link_libraries(qmcnumerics qmcio containers qmcutil)
target_include_directories(qmcnumerics INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}")
if(BUILD_UNIT_TESTS)
add_subdirectory(tests)
endif()