Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libQCR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
libQCR
Commits
f14d96c8
Commit
f14d96c8
authored
6 months ago
by
AlQuemist
Browse files
Options
Downloads
Patches
Plain Diff
<root>/CMakeLists.txt: report Qt details
parent
f54b20ba
Branches
a.fixQTDir
Branches containing commit
No related tags found
1 merge request
!34
Fix Qt CMake directory [Linux]
Pipeline
#149641
passed
6 months ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+10
-0
10 additions, 0 deletions
CMakeLists.txt
with
10 additions
and
0 deletions
CMakeLists.txt
+
10
−
0
View file @
f14d96c8
...
...
@@ -58,6 +58,16 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
### Dependences
find_package
(
Qt6 REQUIRED COMPONENTS Core Gui Widgets
)
set
(
Qt_DIR
"
${
QT6_INSTALL_PREFIX
}
"
)
set
(
Qt_VERSION
"
${
Qt6Core_VERSION
}
"
)
set
(
Qt_INCLUDE_DIR
"
${
QT6_INSTALL_PREFIX
}
/
${
QT6_INSTALL_HEADERS
}
"
)
set
(
Qt_LIBS_DIR
"
${
QT6_INSTALL_PREFIX
}
/
${
QT6_INSTALL_LIBS
}
"
)
set
(
Qt_BIN_DIR
"
${
QT6_INSTALL_PREFIX
}
/
${
QT6_INSTALL_BINS
}
"
)
message
(
STATUS
" Qt
${
Qt_VERSION
}
directory: '
${
Qt_DIR
}
'"
)
message
(
STATUS
" Qt include directory: '
${
Qt_INCLUDE_DIR
}
'"
)
message
(
STATUS
" Qt libraries directory: '
${
Qt_LIBS_DIR
}
'"
)
message
(
STATUS
" Qt binaries directory: '
${
Qt_BIN_DIR
}
'"
)
### Installation settings
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment