Create CMake targets for each of the modules.
[alexxy/gromacs.git] / src / gromacs / gpu_utils / CMakeLists.txt
1 #
2 # This file is part of the GROMACS molecular simulation package.
3 #
4 # Copyright (c) 2015,2016,2017,2018,2019,2020, by the GROMACS development team, led by
5 # Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 # and including many others, as listed in the AUTHORS file in the
7 # top-level source directory and at http://www.gromacs.org.
8 #
9 # GROMACS is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public License
11 # as published by the Free Software Foundation; either version 2.1
12 # of the License, or (at your option) any later version.
13 #
14 # GROMACS is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 # Lesser General Public License for more details.
18 #
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with GROMACS; if not, see
21 # http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23 #
24 # If you want to redistribute modifications to GROMACS, please
25 # consider that scientific software is very special. Version
26 # control is crucial - bugs must be traceable. We will be happy to
27 # consider code for inclusion in the official distribution, but
28 # derived work must not be called official GROMACS. Details are found
29 # in the README & COPYING files - if they are missing, get the
30 # official version at http://www.gromacs.org.
31 #
32 # To help us fund GROMACS development, we humbly ask that you cite
33 # the research papers on the package. Check out http://www.gromacs.org.
34
35 # Note, source files should be listed in alphabetical order, to reduce
36 # the incidence of textual clashes when adding/moving files that
37 # otherwise make the end of the list a hotspot.
38
39 add_library(gpu_utils INTERFACE)
40
41 gmx_add_libgromacs_sources(
42         clfftinitializer.cpp
43         device_stream_manager.cpp
44         hostallocator.cpp
45         gpu_utils.cpp
46         )
47 if(GMX_GPU_OPENCL)
48     gmx_add_libgromacs_sources(
49         device_context_ocl.cpp
50         device_stream_ocl.cpp
51         ocl_compiler.cpp
52         ocl_caching.cpp
53         oclutils.cpp
54         )
55 elseif(GMX_GPU_CUDA)
56     gmx_add_libgromacs_sources(
57         device_context.cpp
58         device_stream.cu
59         gpu_utils.cu
60         pinning.cu
61         pmalloc_cuda.cu
62         )
63     _gmx_add_files_to_property(CUDA_SOURCES
64         device_stream_manager.cpp
65         )
66 elseif(GMX_GPU_SYCL)
67     gmx_add_libgromacs_sources(
68         devicebuffer_sycl.cpp
69         device_context_sycl.cpp
70         device_stream_sycl.cpp
71         )
72     _gmx_add_files_to_property(SYCL_SOURCES
73         devicebuffer_sycl.cpp
74         device_context_manager.cpp
75         device_context_sycl.cpp
76         device_stream_manager.cpp
77         device_stream_sycl.cpp
78         )
79 else()
80     gmx_add_libgromacs_sources(
81         device_context.cpp
82         device_stream.cpp
83     )
84 endif()
85
86 # Source files have the following private module dependencies.
87 target_link_libraries(gpu_utils PRIVATE
88 #                      gmxlib
89 #                      math
90 #                      mdtypes
91 #                      tng_io
92                       )
93
94 # Public interface for modules, including dependencies and interfaces
95 #target_include_directories(gpu_utils PUBLIC
96 target_include_directories(gpu_utils INTERFACE
97                            $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>)
98 #target_link_libraries(gpu_utils PUBLIC
99 target_link_libraries(gpu_utils INTERFACE
100                       legacy_api
101                       )
102
103 # TODO: when gpu_utils is an OBJECT target
104 #target_link_libraries(gpu_utils PUBLIC legacy_api)
105 #target_link_libraries(gpu_utils PRIVATE common)
106
107 # Module dependencies
108 # gpu_utils interfaces convey transitive dependence on these modules.
109 #target_link_libraries(gpu_utils PUBLIC
110 target_link_libraries(gpu_utils INTERFACE
111 #                      utility
112                       )
113 # Source files have the following private module dependencies.
114 #target_link_libraries(gpu_utils PRIVATE tng_io)
115 # TODO: Explicitly link specific modules.
116 #target_link_libraries(gpu_utils PRIVATE legacy_modules)
117
118 if (BUILD_TESTING)
119     add_subdirectory(tests)
120 endif()