Skip to content

Run the polyhedron demo with the offscreen platform #740

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Polyhedron/demo/Polyhedron/Polyhedron_3.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-platform minimal 'qtscript:main_window.quit()'
10 changes: 7 additions & 3 deletions Polyhedron/demo/Polyhedron/cgal_test_with_cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#! /bin/sh

LD_BIND_NOW=1
export LD_BIND_NOW

# This is a script for the CGAL test suite. Such a script must obey
# the following rules:
#
Expand Down Expand Up @@ -98,7 +101,6 @@ else
echo "Run all tests."

for target in \
Polyhedron_3 \
camera_positions_plugin \
convex_hull_plugin \
corefinement_plugin \
Expand Down Expand Up @@ -177,9 +179,11 @@ else
p_tanglecube_function_plugin \
shortest_path_plugin \
advancing_front_plugin \
all
all \
Polyhedron_3
do
if ${MAKE_CMD} -f Makefile help | grep "$target" > /dev/null; then
if ${MAKE_CMD} -f Makefile help | grep "$target" > /dev/null; then
[ "$target" = Polyhedron_3 ] && DO_RUN=1
compile_and_run "$target"
NEED_CLEAN=y
fi
Expand Down