Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
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
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
a25f0af7
Commit
a25f0af7
authored
11 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
No commit message
No commit message
parent
be2c1c1f
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+4
-4
4 additions, 4 deletions
CMakeLists.txt
with
4 additions
and
4 deletions
CMakeLists.txt
+
4
−
4
View file @
a25f0af7
...
...
@@ -1669,13 +1669,13 @@ endif(ENABLE_WRAP_JAVA)
include
(
CPack
)
include
(
CTest
)
file
(
GLOB_RECURSE
GEO
FILES
file
(
GLOB_RECURSE
TEST
FILES
tutorial/*.geo demos/*.geo benchmarks/?d/*.geo benchmarks/extrude/*.geo
)
foreach
(
GEO
FILE
${
GEO
FILES
}
)
foreach
(
TEST
FILE
${
TEST
FILES
}
)
# use relative path for cygwin/mingw (the pure win exe built with the mingw
# compilers does not understand a full cygwin-style path)
FILE
(
RELATIVE_PATH
GEO
${
CMAKE_CURRENT_BINARY_DIR
}
${
GEO
FILE
}
)
add_test
(
${
GEO
}
./gmsh
${
GEO
}
-3 -nopopup -o ./tmp.msh
)
FILE
(
RELATIVE_PATH
TEST
${
CMAKE_CURRENT_BINARY_DIR
}
${
TEST
FILE
}
)
add_test
(
${
TEST
}
./gmsh
${
TEST
}
-3 -nopopup -o ./tmp.msh
)
endforeach
()
# if(HAVE_PYTHON)
# file(GLOB_RECURSE TESTFILES tutorial/*.py)
...
...
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