-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #598 from elucideye/pr.nlohmann
Add missing dependency
- Loading branch information
Showing
2 changed files
with
16 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ find_package(ARM_NEON_2_x86_SSE CONFIG REQUIRED) # header | |
find_package(Eigen3 CONFIG REQUIRED) # header | ||
find_package(cereal CONFIG REQUIRED) # header | ||
find_package(dlib CONFIG REQUIRED) # header (for now) | ||
find_package(half CONFIG REQUIRED) # header | ||
find_package(half CONFIG REQUIRED) # header | ||
find_package(spdlog CONFIG REQUIRED) # header | ||
find_package(sse2neon CONFIG REQUIRED) # header | ||
if(@DRISHTI_USE_THREAD_POOL_CPP@) | ||
|
@@ -31,15 +31,19 @@ endif() | |
|
||
## | ||
## Experimental: typically disabled for release | ||
## | ||
## | ||
|
||
if(@DRISHTI_BUILD_DEST@) | ||
find_package(dest CONFIG REQUIRED) | ||
endif() | ||
|
||
if(@DRISHTI_BUILD_EOS@) | ||
find_package(eos CONFIG REQUIRED) | ||
find_package(Boost CONFIG REQUIRED filesystem system) | ||
find_package(Boost CONFIG REQUIRED filesystem system) | ||
endif() | ||
|
||
if(@DRISHTI_BUILD_FACE@) | ||
find_package(nlohmann_json CONFIG REQUIRED) | ||
endif() | ||
|
||
find_package(glm CONFIG REQUIRED) | ||
|
@@ -50,4 +54,3 @@ endif() | |
|
||
include("${CMAKE_CURRENT_LIST_DIR}/@[email protected]") | ||
check_required_components("@PROJECT_NAME@") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters