Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SMTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Haocheng LIU
SMTK
Commits
5066210d
Commit
5066210d
authored
7 years ago
by
T.J. Corona
Browse files
Options
Downloads
Patches
Plain Diff
Add flag for enabling applications (on by default).
parent
6a84c1be
Branches
master
Branches containing commit
Tags
v4.3.0-rc4
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+2
-1
2 additions, 1 deletion
CMakeLists.txt
with
2 additions
and
1 deletion
CMakeLists.txt
+
2
−
1
View file @
5066210d
...
...
@@ -108,6 +108,7 @@ cmake_dependent_option(
SMTK_ENABLE_PYTHON_WRAPPING OFF
)
mark_as_advanced
(
SMTK_INSTALL_PYTHON_TO_SITE_PACKAGES
)
option
(
SMTK_ENABLE_QT_SUPPORT
"Build Qt GUI"
OFF
)
cmake_dependent_option
(
SMTK_ENABLE_APPLICATIONS
"Build Qt-enabled applications"
ON SMTK_ENABLE_QT_SUPPORT OFF
)
option
(
SMTK_ENABLE_VTK_SUPPORT
"Build VTK component"
ON
)
option
(
SMTK_ENABLE_REMUS_SUPPORT
"Build Remus components"
OFF
)
cmake_dependent_option
(
SMTK_ENABLE_PARAVIEW_SUPPORT
"Build paraview plugins for model sessions"
OFF
...
...
@@ -627,7 +628,7 @@ endif ()
add_subdirectory
(
smtk
)
# Build SMTK Applications
if
(
SMTK_ENABLE_
QT_SUPPORT
)
if
(
SMTK_ENABLE_
APPLICATIONS
)
add_subdirectory
(
applications
)
endif
()
...
...
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