blob: db9388629f3a3e5f1620422164982fa26d6aa2fb [file] [log] [blame]
Jaswant Panchumarti85b76752024-06-25 04:24:49 +00001# Copyright 2024 The Dawn & Tint Authors
2#
3# Redistribution and use in source and binary forms, with or without
4# modification, are permitted provided that the following conditions are met:
5#
6# 1. Redistributions of source code must retain the above copyright notice, this
7# list of conditions and the following disclaimer.
8#
9# 2. Redistributions in binary form must reproduce the above copyright notice,
10# this list of conditions and the following disclaimer in the documentation
11# and/or other materials provided with the distribution.
12#
13# 3. Neither the name of the copyright holder nor the names of its
14# contributors may be used to endorse or promote products derived from
15# this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
21# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
23# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28#[==[.rst:
29.. cmake:command:: dawn_add_library
30
31 Create a library.
32
33 .. code-block:: cmake
34
35 dawn_add_library(<name>
36 [FORCE_STATIC|FORCE_SHARED|FORCE_OBJECT]
37 [HEADER_ONLY]
38 [UTILITY_TARGET <target>]
39 [HEADERS <header>...]
Jaswant Panchumartidfa913f2024-06-26 01:02:01 +000040 [PRIVATE_HEADERS <header>...]
Jaswant Panchumarti85b76752024-06-25 04:24:49 +000041 [SOURCES <source>...]
42 [DEPENDS <library>...]
43 [PRIVATE_DEPENDS <library>...])
44
45 * ``FORCE_STATIC`` or ``FORCE_SHARED`` or ``FORCE_OBJECT``: Forces a
46 static (respectively, shared and object) library to be created.
47 If none is provided, ``BUILD_SHARED_LIBS`` will control the library type.
48 * ``HEADER_ONLY``: The library only contains headers (or templates) and contains
49 no compilation steps. Mutually exclusive with ``FORCE_STATIC``.
50 * ``UTILITY_TARGET``: If specified, all libraries and executables made by the
51 Dawn library API will privately link to this target. This may be used to
52 provide things such as project-wide compilation flags or similar.
53 * ``HEADERS``: A list of header files.
Jaswant Panchumartidfa913f2024-06-26 01:02:01 +000054 * ``PRIVATE_HEADERS``: A list of private header files.
Jaswant Panchumarti85b76752024-06-25 04:24:49 +000055 * ``SOURCES``: A list of source files which require compilation.
56 * ``DEPENDS``: A list of libraries that this library must link against,
57 equivalent to PUBLIC deps in target_link_libraries.
58 * ``PRIVATE_DEPENDS``: A list of libraries that this library must link against,
59 equivalent to PRIVATE deps in target_link_libraries.
60#]==]
61function(dawn_add_library name)
62 set(kwargs)
63 cmake_parse_arguments(PARSE_ARGV 1 arg
64 "FORCE_STATIC;FORCE_SHARED;FORCE_OBJECT;HEADER_ONLY"
65 "UTILITY_TARGET"
Jaswant Panchumartidfa913f2024-06-26 01:02:01 +000066 "HEADERS;PRIVATE_HEADERS;SOURCES;DEPENDS;PRIVATE_DEPENDS")
Jaswant Panchumarti85b76752024-06-25 04:24:49 +000067
68 if (arg_UNPARSED_ARGUMENTS)
69 message(FATAL_ERROR
70 "Unparsed arguments for dawn_add_library: "
71 "${arg_UNPARSED_ARGUMENTS}")
72 endif ()
73
74 if (arg_HEADER_ONLY AND arg_FORCE_STATIC)
75 message(FATAL_ERROR
76 "The ${name} library cannot be header only yet forced static.")
77 endif ()
78
79 if (NOT (arg_SOURCES OR arg_HEADERS))
80 message(FATAL_ERROR
81 "The ${name} library needs at least one of sources or headers.")
82 endif ()
83
84 if (arg_FORCE_SHARED AND arg_FORCE_STATIC)
85 message(FATAL_ERROR
86 "The ${name} library cannot be both shared and static.")
87 elseif (arg_FORCE_SHARED AND arg_FORCE_OBJECT)
88 message(FATAL_ERROR
89 "The ${name} library cannot be both shared and object.")
90 elseif (arg_FORCE_STATIC AND arg_FORCE_OBJECT)
91 message(FATAL_ERROR
92 "The ${name} library cannot be both static and object.")
93 endif ()
94
95 if (NOT arg_SOURCES AND NOT arg_HEADER_ONLY)
96 message(AUTHOR_WARNING
97 "The ${name} library has no source files. Did you mean to "
98 "pass the `HEADER_ONLY` flag?")
99 endif ()
100
101 set(library_type)
102 if (arg_FORCE_STATIC)
103 set(library_type STATIC)
104 elseif (arg_FORCE_OBJECT)
105 set(library_type OBJECT)
106 elseif (arg_FORCE_SHARED)
107 set(library_type SHARED)
108 elseif (BUILD_SHARED_LIBS)
109 set(library_type SHARED)
110 else ()
111 set(library_type STATIC)
112 endif ()
113
114 if (arg_HEADER_ONLY)
115 add_library("${name}" INTERFACE)
116 target_link_libraries("${name}"
117 INTERFACE
118 ${arg_DEPENDS})
119 target_sources("${name}"
Jaswant Panchumartidfa913f2024-06-26 01:02:01 +0000120 PUBLIC
Jaswant Panchumarti85b76752024-06-25 04:24:49 +0000121 ${arg_HEADERS})
122 else ()
123 add_library("${name}" ${library_type})
Jaswant Panchumartidfa913f2024-06-26 01:02:01 +0000124 if (arg_HEADERS)
125 target_sources("${name}"
126 PUBLIC
127 ${arg_HEADERS})
128 endif ()
Jaswant Panchumarti85b76752024-06-25 04:24:49 +0000129 target_sources("${name}"
130 PRIVATE
Jaswant Panchumartidfa913f2024-06-26 01:02:01 +0000131 ${arg_PRIVATE_HEADERS}
Jaswant Panchumarti85b76752024-06-25 04:24:49 +0000132 ${arg_SOURCES})
133 target_link_libraries("${name}"
134 PUBLIC
135 ${arg_DEPENDS}
136 PRIVATE
137 ${arg_PRIVATE_DEPENDS}
138 ${arg_UTILITY_TARGET}
139 )
140 common_compile_options("${name}")
141 endif ()
142 add_library("dawn::${name}" ALIAS "${name}")
143endfunction()
Jaswant Panchumarti5a26bdd2024-07-04 14:13:55 +0000144
145#[==[.rst:
146.. cmake:command:: dawn_install_target
147
148 Install a target and associated header files.
149
150 .. code-block:: cmake
151
152 dawn_install_target(<name>
153 [HEADERS <header>...]
154 )
155
156 * ``HEADERS``: A list of header files to install.
157#]==]
158function(dawn_install_target name)
159 cmake_parse_arguments(PARSE_ARGV 1 arg
160 ""
161 ""
162 "HEADERS")
163 if (arg_UNPARSED_ARGUMENTS)
164 message(FATAL_ERROR
165 "Unparsed arguments for dawn_install_target: "
166 "${arg_UNPARSED_ARGUMENTS}")
167 endif ()
168 install(TARGETS "${name}"
169 EXPORT DawnTargets
170 RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
171 LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
172 ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
173 )
174 foreach(header IN LISTS arg_HEADERS)
175 # Starting from CMake 3.20 there is the cmake_path command that could simplify this code.
176 # Compute the install subdirectory for the header by stripping out the path to
177 # the 'include' (or) 'gen/include' directory...
178 string(FIND "${header}" "${DAWN_INCLUDE_DIR}" found)
179 if (found EQUAL 0)
180 string(LENGTH "${DAWN_INCLUDE_DIR}/" deduction)
181 endif()
182 string(FIND "${header}" "${DAWN_BUILD_GEN_DIR}/include/" found)
183 if (found EQUAL 0)
184 string(LENGTH "${DAWN_BUILD_GEN_DIR}/include/" deduction)
185 endif()
186 string(SUBSTRING "${header}" "${deduction}" -1 subdir)
187
188 # ... then remove everything after the last /
189 string(FIND "${subdir}" "/" found REVERSE)
190 string(SUBSTRING "${subdir}" 0 ${found} subdir)
191 install(FILES "${header}" DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/${subdir}")
192 endforeach()
193endfunction()