-
Notifications
You must be signed in to change notification settings - Fork 1
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 #464 from imperialCHEPI/combined_input_module
Move config-related code into combined `HeathGPS.Input` module
- Loading branch information
Showing
44 changed files
with
240 additions
and
252 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
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
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
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
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
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
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
find_package(fmt CONFIG REQUIRED) | ||
find_package(jsoncons CONFIG REQUIRED) | ||
find_package(libzippp CONFIG REQUIRED) | ||
find_package(unofficial-curlpp CONFIG REQUIRED) | ||
|
||
add_library(HealthGPS.Input STATIC "") | ||
target_compile_features(HealthGPS.Input PUBLIC cxx_std_${CMAKE_CXX_STANDARD}) | ||
|
||
target_sources( | ||
HealthGPS.Input | ||
PRIVATE "api.h" | ||
"configuration.cpp" | ||
"configuration.h" | ||
"configuration_parsing.cpp" | ||
"configuration_parsing.h" | ||
"configuration_parsing_helpers.h" | ||
"csvparser.cpp" | ||
"csvparser.h" | ||
"datamanager.cpp" | ||
"datamanager.h" | ||
"download_file.cpp" | ||
"download_file.h" | ||
"jsonparser.cpp" | ||
"jsonparser.h" | ||
"model_parser.cpp" | ||
"model_parser.h" | ||
"poco.h" | ||
"riskmodel.h" | ||
"schema.cpp" | ||
"schema.h" | ||
"zip_file.cpp" | ||
"zip_file.h") | ||
|
||
target_link_libraries(HealthGPS.Input PRIVATE HealthGPS HealthGPS.Core fmt::fmt jsoncons | ||
libzippp::libzippp unofficial::curlpp::curlpp) | ||
|
||
set(ROOT_NAMESPACE hgps::input) |
File renamed without changes.
Oops, something went wrong.