Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion cmake/NekoThreadPoolConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

# Find required dependencies
# NekoSchema is a header-only dependency, just need to find it for includes
# Note: find_dependency() must not be given REQUIRED or QUIET; it forwards the
# REQUIRED/QUIET-ness requested by the caller of find_package(NekoThreadPool).
include(CMakeFindDependencyMacro)
find_dependency(NekoSchema REQUIRED)
find_dependency(NekoSchema)

# Include the targets file
include("${CMAKE_CURRENT_LIST_DIR}/NekoThreadPoolTargets.cmake")
Expand Down
Loading