Fernando Cacciola
f93437ca22
Removed *unmodified* auto-generated CMakeLists.txt (now created by create_internal_release)
2008-05-05 14:01:55 +00:00
Fernando Cacciola
b704509dcf
Examples/Demos/Test CMake scripts updated
2008-03-05 21:14:02 +00:00
Laurent Rineau
adf6f9ea52
Minor fix: the .moc should be included with #include "..." instead of
...
#include <...>.
2008-02-25 13:55:16 +00:00
Fernando Cacciola
a659cd852a
Added project() and conditional test for CGAL_DIR
2008-02-14 15:42:36 +00:00
Fernando Cacciola
14043c43a0
Replaced CGALROOT by CGAL_DIR (the latters is used by CMake automatically)
2008-02-08 17:47:21 +00:00
Fernando Cacciola
279eb55b13
Some cmake scripts for demos and examples fixed
2008-02-07 14:58:33 +00:00
Fernando Cacciola
afddfc4fca
CMake scripts for demos/examples/test added
2008-02-06 19:06:24 +00:00
Peter Hachenberger
7c41599488
adjusted reading
2008-01-17 15:34:18 +00:00
Peter Hachenberger
0ec77d9780
additional parameter for optimization issues
2008-01-16 15:57:31 +00:00
Sylvain Pion
fd0df56ebd
Get rid of some eternally commented debug code at global scope ::MSDEBUG.
2008-01-12 21:00:11 +00:00
Sylvain Pion
a46b55bf71
The files "changes.txt", "description.txt", "long_description.txt" and "maintainer"
...
are now under /trunk/$Package/package_info/$Package/ .
2007-12-02 15:06:42 +00:00
Andreas Meyer
0f941fbcf2
again CGAL_error -> CGAL_error_msg
2007-11-09 15:27:44 +00:00
Andreas Meyer
c1d1609af1
replaced CGAL_assertion( false* and CGAL_assertion( 0*
...
with CGAL_error/CGAL_error_msg
2007-11-08 00:27:20 +00:00
Andreas Meyer
fdeedcf8b0
some low level code cleanup. renamed
...
* CGAL_error to CGAL_error_msg
* introduced a macro CGAL_error()
* added some words about CGAL_error to the developers manual
* renamed most of assert(x) into CGAL_assertion(x)
* renamed exit(x) with x != 0 , CGAL_assertion(false) and assert(false) into CGAL_error
* CORE left untouched, OpenNL changed
2007-11-07 16:51:18 +00:00
Sylvain Pion
055009cc58
Remove the need for mentionning todo files and doxygen files.
2007-11-03 21:15:36 +00:00
Peter Hachenberger
99e9ad30d2
removed ancient bug in locate()
2007-09-21 20:33:49 +00:00
Peter Hachenberger
d4eb5e3247
added new helper function split_at
2007-09-11 15:50:18 +00:00
Peter Hachenberger
1f8a68ea1b
final adaptations to the new indexed_items
2007-08-01 11:58:52 +00:00
Peter Hachenberger
13dcfb940e
using integral_division enables the use of MP_float
2007-08-01 11:48:25 +00:00
Fernando Cacciola
6189c4f670
Merged back from 3.3-branch
2007-06-06 16:11:12 +00:00
Fernando Cacciola
88111fcf70
VS project files merged back
2007-06-06 15:35:17 +00:00
Andreas Fabri
01e763217b
3.3 branch -> trunk
2007-06-04 14:27:09 +00:00
Andreas Meyer
c1e9765ff4
manual fix: moved labels inside sectioning command
2007-04-18 14:20:12 +00:00
Andreas Meyer
f98952dc75
fixed figure/link to figure
2007-04-17 22:45:58 +00:00
Peter Hachenberger
3b6c45efa6
removed warnings
2007-04-17 07:29:00 +00:00
Peter Hachenberger
38712a8584
removed some warnings
2007-04-16 16:56:26 +00:00
Peter Hachenberger
418950e953
explicit initialization of Base class
2007-04-16 16:38:25 +00:00
Peter Hachenberger
9bde233b36
exchanged number type to get rid of conversion problem
2007-04-16 16:00:05 +00:00
Peter Hachenberger
c7b22268be
bug fix for indexed items
2007-04-12 10:31:22 +00:00
Peter Hachenberger
395ca9146c
fixed bugs in ray_shoot()
2007-04-12 10:30:33 +00:00
Andreas Fabri
ea71b8eaa1
.C ->.cpp and autolinking
2007-04-11 13:59:20 +00:00
Andreas Fabri
279d5d408b
remove unused parameter
2007-04-06 08:56:24 +00:00
Andreas Meyer
41169fc270
* updated howtocite bibkeys for upcoming 3.3 release
...
* typo fixes/cosmetic changes
2007-03-29 17:40:13 +00:00
Peter Hachenberger
4fec5dbc53
removed wrong assertions
2007-03-28 13:03:14 +00:00
Andreas Fabri
06a2a3fc0b
Removed unused parameters
2007-03-26 07:45:54 +00:00
Joachim Reichel
876652347a
change license to LGPL as the file is used during the build of libCGALQt
2007-03-20 20:33:56 +00:00
Andreas Fabri
37f581bd75
removed unused parameters
2007-03-19 09:13:00 +00:00
Andreas Fabri
7f4c5cc311
removed unused parameters
2007-03-19 09:05:53 +00:00
Andreas Fabri
4646824f92
.C -> .cpp
2007-03-15 18:15:18 +00:00
Andreas Fabri
188cf9590f
Added pragma to suppress warning, plus cleanup
2007-03-15 16:40:37 +00:00
Joachim Reichel
d08f6bea45
replace obsolete variable CGAL_QT_LDFLAGS by CGAL_LDFLAGS
2007-03-11 09:54:17 +00:00
Sylvain Pion
b2630cd7e1
Apply trailing whites-spaces and leadgin+trailing empty-lines cleanups
...
to demo/**/*.h and .cpp.
2007-03-10 16:55:12 +00:00
Sylvain Pion
847c23a15e
Removing leading and trailing empty lines from all example files.
...
Using the following Perl script:
-----------------------------------------------------
#!/usr/bin/perl
local($/) = undef;
my $text = <>;
$text =~ s/\A\n+//mg;
$text =~ s/\n+\Z/\n/mg;
print "$text";
-----------------------------------------------------
2007-03-10 16:17:17 +00:00
Sylvain Pion
ffe1e4ec1c
More redundant filename removal.
...
The only survivors should be under Arrangement_2/examples
(some Doxygen syntax is used, so I don't touch them).
2007-03-10 15:22:41 +00:00
Sylvain Pion
6fb5cb906b
Remove trailing white spaces and end of lines.
...
(using : perl -pi.bak -e 's/\s+$/\n/' */examples/*/*.cpp )
2007-03-10 14:59:41 +00:00
Sylvain Pion
5d8d4c8dec
Constify check_sep().
2007-03-10 12:49:21 +00:00
Sylvain Pion
243dac15e6
warning--
2007-03-08 10:03:49 +00:00
Sylvain Pion
cb7784aa01
Replace the 7 partners by only MPI as copyright owner.
...
This probably came from a copy-paste of Qt_widget, which is INRIA only (post-GALIA).
2007-03-07 12:01:28 +00:00
Sylvain Pion
54bafcf4c4
Add missing CGAL:: qualifications required by g++ 4.3
2007-03-05 16:20:47 +00:00
Peter Hachenberger
1ec1a530f8
- hopefully gets rid of typedef Problems.
...
- removal of some warnings.
2007-03-02 14:30:25 +00:00