-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcarbon-coreConfig.cmake
More file actions
38 lines (33 loc) · 1.21 KB
/
carbon-coreConfig.cmake
File metadata and controls
38 lines (33 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright © 2025 CCP ehf.
include(CMakeFindDependencyMacro)
# This file is generated automatically by cmake as part of the install step
include(${CMAKE_CURRENT_LIST_DIR}/carbon-core.cmake)
# Please specify all of this projects transitive dependencies here with calls
# In order for a consuming cmake project system to locate any transitive dependencies of this project, they must be
# specified here in a call to find_dependency(...)
#
# Example:
#
# My project CMakeLists.txt file looks like this:
# ------------------------
# MyProject/CMakeLists.txt
# ------------------------
#
# find_package(a CONFIG NO_CMAKE_PATH REQUIRED)
# find_package(b CONFIG NO_CMAKE_PATH REQUIRED)
# find_package(c CONFIG NO_CMAKE_PATH REQUIRED)
# target_link_libraries(MyProjectTarget PRIVATE package_a PUBLIC package_b INTERFACE package_c)
# . . .
#
# Then the myprojectConfig file (this file) looks like this:
#--------------------------------
# MyProject/myprojectConfig.cmake
# -------------------------------
#
# include(CMakeFindDependencyMacro)
# include(${CMAKE_CURRENT_LIST_DIR}/myproject.cmake)
#
# find_dependency(b CONFIG NO_CMAKE_PATH REQUIRED)
# find_dependency(c CONFIG NO_CMAKE_PATH REQUIRED)
#
find_dependency(Tracy CONFIG REQUIRED)