Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Archive
Alchemy Viewer
Commits
89cb5aa9
Commit
89cb5aa9
authored
14 years ago
by
Aimee Linden
Browse files
Options
Downloads
Patches
Plain Diff
VWR-20855 (SNOW-510) FIXED Cannot find tut/tut.hpp in Standalone builds
parent
ba7fa006
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/contributions.txt
+2
-0
2 additions, 0 deletions
doc/contributions.txt
indra/cmake/FindTut.cmake
+31
-0
31 additions, 0 deletions
indra/cmake/FindTut.cmake
indra/cmake/Tut.cmake
+8
-2
8 additions, 2 deletions
indra/cmake/Tut.cmake
with
41 additions
and
2 deletions
doc/contributions.txt
+
2
−
0
View file @
89cb5aa9
...
@@ -151,6 +151,7 @@ blino Nakamura
...
@@ -151,6 +151,7 @@ blino Nakamura
Boroondas Gupte
Boroondas Gupte
SNOW-278
SNOW-278
SNOW-503
SNOW-503
SNOW-510
SNOW-527
SNOW-527
SNOW-624
SNOW-624
VWR-233
VWR-233
...
@@ -533,6 +534,7 @@ Robin Cornelius
...
@@ -533,6 +534,7 @@ Robin Cornelius
VWR-11128
VWR-11128
VWR-12533
VWR-12533
VWR-12587
VWR-12587
VWR-12758
VWR-12763
VWR-12763
VWR-12995
VWR-12995
Ryozu Kojima
Ryozu Kojima
...
...
This diff is collapsed.
Click to expand it.
indra/cmake/FindTut.cmake
0 → 100644
+
31
−
0
View file @
89cb5aa9
# -*- cmake -*-
# - Find Tut
# Find the Tut unit test framework includes and library
# This module defines
# TUT_INCLUDE_DIR, where to find tut.h, etc.
# TUT_FOUND, If false, do not try to use Tut.
find_path
(
TUT_INCLUDE_DIR tut.h
/usr/local/include/
/usr/include
)
if
(
TUT_INCLUDE_DIR
)
set
(
TUT_FOUND
"YES"
)
else
(
TUT_INCLUDE_DIR
)
set
(
TUT_FOUND
"NO"
)
endif
(
TUT_INCLUDE_DIR
)
if
(
TUT_FOUND
)
if
(
NOT TUT_FIND_QUIETLY
)
message
(
STATUS
"Found Tut:
${
TUT_INCLUDE_DIR
}
"
)
set
(
TUT_FIND_QUIETLY TRUE
)
# Only alert us the first time
endif
(
NOT TUT_FIND_QUIETLY
)
else
(
TUT_FOUND
)
if
(
TUT_FIND_REQUIRED
)
message
(
FATAL_ERROR
"Could not find Tut"
)
endif
(
TUT_FIND_REQUIRED
)
endif
(
TUT_FOUND
)
mark_as_advanced
(
TUT_INCLUDE_DIR
)
This diff is collapsed.
Click to expand it.
indra/cmake/Tut.cmake
+
8
−
2
View file @
89cb5aa9
# -*- cmake -*-
# -*- cmake -*-
include
(
Prebuilt
)
include
(
Prebuilt
)
if
(
NOT STANDALONE
)
set
(
TUT_FIND_REQUIRED TRUE
)
set
(
TUT_FIND_QUIETLY TRUE
)
if
(
STANDALONE
)
include
(
FindTut
)
include_directories
(
${
TUT_INCLUDE_DIR
}
)
else
(
STANDALONE
)
use_prebuilt_binary
(
tut
)
use_prebuilt_binary
(
tut
)
endif
(
NOT
STANDALONE
)
endif
(
STANDALONE
)
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