Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Okteta
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Utilities
Okteta
Commits
69c8c430
Commit
69c8c430
authored
Feb 28, 2015
by
Friedrich W. H. Kossebau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix not working "set(VAR NOT VAR2)"
parent
87e4aa67
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
CMakeLists.txt
CMakeLists.txt
+12
-7
No files found.
CMakeLists.txt
View file @
69c8c430
...
...
@@ -66,15 +66,20 @@ set_package_properties(Qca-qt5 PROPERTIES DESCRIPTION "Qt Cryptographic Architec
URL
"http:/download.kde.org/stable/qca-qt5"
TYPE OPTIONAL
PURPOSE
"Needed for most of the algorithms of the checksum tool"
)
# control build scope
if
(
NOT DEFINED OMIT_EXAMPLES
)
set
(
OMIT_EXAMPLES
${
BUILD_TESTING
}
)
# control build scope
, default to examples if BUILD_TESTING is ON
if
(
NOT DEFINED OMIT_EXAMPLES AND NOT BUILD_TESTING
)
set
(
OMIT_EXAMPLES TRUE
)
endif
()
if
(
NOT DEFINED OMIT_INTERNAL_TEMPLATES
)
set
(
OMIT_INTERNAL_TEMPLATES
${
BUILD_TESTING
}
)
if
(
NOT DEFINED OMIT_INTERNAL_TEMPLATES AND NOT BUILD_TESTING
)
set
(
OMIT_INTERNAL_TEMPLATES TRUE
)
endif
()
if
(
NOT OMIT_EXAMPLES
)
set
(
OKTETA_BUILD_EXAMPLES TRUE
)
endif
()
if
(
NOT OMIT_INTERNAL_TEMPLATES
)
set
(
KASTEN_BUILD_INTERNAL_TEMPLATES TRUE
)
endif
()
set
(
OKTETA_BUILD_EXAMPLES NOT OMIT_EXAMPLES
)
set
(
KASTEN_BUILD_INTERNAL_TEMPLATES NOT OMIT_INTERNAL_TEMPLATES
)
add_definitions
(
-DQT_USE_QSTRINGBUILDER
...
...
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