Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove nlohmann json submodule and add header directly instead #10

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

6 changes: 3 additions & 3 deletions libs/cpp/parse/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ install(TARGETS libevents_parser

add_library(nlohmann_json
INTERFACE
nlohmann_json/single_include/nlohmann/json_fwd.hpp
nlohmann/json_fwd.hpp
)
set_target_properties(nlohmann_json PROPERTIES PUBLIC_HEADER
nlohmann_json/single_include/nlohmann/json_fwd.hpp)
nlohmann/json_fwd.hpp)
install(TARGETS nlohmann_json
EXPORT libevents
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libevents/parse/nlohmann_json/single_include/nlohmann)
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libevents/parse/nlohmann)

add_library(libevents_health_and_arming_checks
health_and_arming_checks.cpp
Expand Down
Loading
Loading