Commit Graph

77 Commits

Author SHA1 Message Date
Fernando Cacciola b704509dcf Examples/Demos/Test CMake scripts updated 2008-03-05 21:14:02 +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 afddfc4fca CMake scripts for demos/examples/test added 2008-02-06 19:06:24 +00:00
Sylvain Pion ddf81159bd SUNPRO workarounds not needed anymore 2008-01-20 20:52:53 +00:00
Sylvain Pion 4d1b8d63e3 Remove workarounds and support for the BORLAND compiler. 2008-01-20 20:24:20 +00:00
Sylvain Pion 796d4603bf Remove obsolete VC++ workaround. 2008-01-20 15:16:09 +00:00
Sylvain Pion f5dae7535f Remove unused and obsolete file (I find no Infinity_distance_2 template in CGAL at all). 2008-01-14 21:48:42 +00:00
Sylvain Pion 49f6e06dee Oops, try 1 instead of 0. 2008-01-13 17:14:50 +00:00
Sylvain Pion 126944d042 Only used by _MSC_VER. 2008-01-11 22:27:14 +00:00
Sylvain Pion 52630ac6bb Try to avoid large VC++ workaround (hopefully it's obsolete). 2008-01-11 22:26:21 +00:00
Sylvain Pion b9066e7a72 Add missing standard headers 2008-01-09 21:32:40 +00:00
Sylvain Pion 8701af6e0b Get rid of CGAL_REP_CLASS_DEFINED 2008-01-03 19:21:23 +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
Fernando Cacciola 88111fcf70 VS project files merged back 2007-06-06 15:35:17 +00:00
Andreas Meyer 57ad8202ea replace Bounded_volume -> Bounding_volume, step (2) 2007-06-05 12:35:12 +00:00
Andreas Meyer 3d216d4abc replace Bounded_volume -> Bounding_volume, step (1) 2007-06-05 12:29:54 +00:00
Andreas Meyer 3cccbbd24c replaced other leftover Inscribed_areas_2_ref by Inscribed_areas_ref 2007-05-04 10:50:13 +00:00
Andreas Fabri 3a6f49f20e completed package description 2007-04-12 09:53:27 +00:00
Andreas Fabri ea71b8eaa1 .C ->.cpp and autolinking 2007-04-11 13:59:20 +00:00
Andreas Fabri cbaac9fbb1 fixed path 2007-04-11 07:15:30 +00:00
Andreas Fabri ce9aacb760 changed author 2007-04-06 09:50:03 +00:00
Andreas Fabri 1d7e0e0bc6 no illustration 2007-04-05 07:30:27 +00:00
Andreas Fabri 2b2cca0190 fixed macro 2007-04-05 07:13:36 +00:00
Andreas Fabri 2144d61fda typos 2007-04-03 07:25:19 +00:00
Andreas Fabri 1f5c13e807 new chapter 2007-04-02 09:47:27 +00:00
Andreas Fabri 2e18b68ba8 new chapter 2007-04-02 09:47:12 +00:00
Andreas Fabri 847666b88e renamed chapter 2007-04-02 09:41:31 +00:00
Andreas Fabri a1e31581e1 renamed chapter 2007-04-02 09:39:21 +00:00
Andreas Fabri bd041046bb renamed chapter 2007-04-02 09:33:16 +00:00
Andreas Fabri 97b5051fa6 renamed chapter 2007-04-02 09:32:41 +00:00
Andreas Fabri 0f88ee0220 new chapter 2007-04-02 09:13:58 +00:00
Andreas Fabri d99a58dc09 new chapter 2007-04-02 09:13:00 +00:00
Andreas Fabri 044d12d06f new chapter 2007-04-02 09:10:01 +00:00
Andreas Fabri fd0688a9b6 change R -> to K 2007-04-02 08:00:19 +00:00
Andreas Fabri a22fa6807d move to the appropriate CGAL package 2007-04-02 07:58:42 +00:00
Sylvain Pion 95fe880186 CGAL_CFG_MATCHING_BUG_3 is not useful anymore
(SunCC has this fixed now, and the others as well).
2007-03-30 08:49:32 +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 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 b8b87ab5a5 Actually, the "// file: example_bla.cpp" lines are not needed anymore,
since the manual tools know it.  So let's just remove them (many were
not uptodate with the filemane anyway).
2007-03-10 14:48:00 +00:00
Sylvain Pion 23edc11d3b Fix all first lines of examples "// file : example_file.C" to .cpp suffix.
Using :

for i in * ; do  cd $i ; for f in examples/*/*.cpp ; do ( head -1 $f | grep file | grep -v '\.cpp' ) && echo $f && perl -pi.bak -e 's/\.C$/.cpp/' $f ; done ; cd .. ; done
2007-03-10 14:34:05 +00:00
Michael Hoffmann 04389bc7cb Superfluous. 2007-02-27 07:49:41 +00:00
Andreas Fabri 91a8471154 Removed prefix example_ from the examples files 2007-02-26 18:54:23 +00:00
Andreas Fabri b1971830b1 Removed suffix _example from the examples files 2007-02-26 18:31:46 +00:00
Sylvain Pion 5c04d1e295 Add parentheses to fix g++-4.3 warnings. 2007-02-16 08:08:23 +00:00
Sylvain Pion 03a4d35556 Fix some g++ 4.3 warnings. 2007-02-15 09:01:00 +00:00
Sylvain Pion 1f30751adf Rename .C to .cpp, and remove makefile/cgal_test. 2007-01-27 20:20:50 +00:00
Sylvain Pion e9f3852691 Remove cgal_test/makefile : the automaticaly generated ones are better
(some programs where not tested because of those buggy script/makefile).
2007-01-27 17:38:06 +00:00