Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
347f805e
Unverified
Commit
347f805e
authored
Oct 30, 2023
by
Artur Wojcik
Committed by
GitHub
Oct 29, 2023
Browse files
use find_package() for SQLite3 (#2384)
parent
cbee4b75
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
src/CMakeLists.txt
src/CMakeLists.txt
+2
-3
No files found.
src/CMakeLists.txt
View file @
347f805e
...
@@ -261,9 +261,8 @@ find_package(nlohmann_json 3.8.0 REQUIRED)
...
@@ -261,9 +261,8 @@ find_package(nlohmann_json 3.8.0 REQUIRED)
target_link_libraries
(
migraphx PRIVATE nlohmann_json::nlohmann_json
)
target_link_libraries
(
migraphx PRIVATE nlohmann_json::nlohmann_json
)
migraphx_generate_export_header
(
migraphx
)
migraphx_generate_export_header
(
migraphx
)
find_package
(
PkgConfig
)
find_package
(
SQLite3 REQUIRED
)
pkg_check_modules
(
SQLITE3 REQUIRED IMPORTED_TARGET sqlite3
)
target_link_libraries
(
migraphx PRIVATE SQLite::SQLite3
)
target_link_libraries
(
migraphx PRIVATE PkgConfig::SQLITE3
)
find_package
(
msgpackc-cxx QUIET
)
find_package
(
msgpackc-cxx QUIET
)
if
(
NOT msgpackc-cxx_FOUND
)
if
(
NOT msgpackc-cxx_FOUND
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment