Changeset 340
- Timestamp:
- 12/29/07 01:04:21 (1 year ago)
- Files:
-
- trunk/README_DSSS (modified) (1 diff)
- trunk/README_GDC (added)
- trunk/demos/cairo/dsss.conf (modified) (1 diff)
- trunk/demos/dsss.conf (modified) (1 diff)
- trunk/demos/gda/dsss.conf (modified) (1 diff)
- trunk/demos/gl/dsss.conf (modified) (1 diff)
- trunk/demos/glade/dsss.conf (modified) (1 diff)
- trunk/demos/gtk/dsss.conf (modified) (4 diffs)
- trunk/demos/gtkD/dsss.conf (modified) (1 diff)
- trunk/demos/sourceView/dsss.conf (modified) (1 diff)
- trunk/gdc-posix-tango.dsss (deleted)
- trunk/gdc-posix.dsss (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/README_DSSS
r322 r340 55 55 $ ./cairo_clock 56 56 57 6) Build your own programs using the provided dsss.conf files from any of the 58 demo folders. 57 6) [OPTIONAL]. Build the documentation. Go to the root folder of the project 58 and run: 59 60 $ ./makedocs.sh 61 62 All docs will get put in the "docs" subfolder. Alternatively, you may build 63 the documentation directly with DSSS: 64 65 $ dsss build --doc 66 67 Docs will be put in the "dsss_docs" subfolder of each folder in "src". 68 69 7) Build your own programs using the provided dsss.conf files from any of the 70 demo folders. Pay special attention to the buildflags used to build the 71 demos. "-L-ldl" and "-no-export-dynamic" are necessary. 59 72 60 73 Have fun! trunk/demos/cairo/dsss.conf
r333 r340 7 7 type = binary 8 8 target = cairo_clock 9 buildflags = -I../../demos/ 9 buildflags = -I../../demos/ -no-export-dynamic 10 10 version(linux) { 11 11 buildflags +=-L-ldl trunk/demos/dsss.conf
r333 r340 3 3 requires = gtkd 4 4 5 [cairo]6 type = subdir5 #[cairo] 6 #type = subdir 7 7 8 [glade]9 type = subdir8 #[glade] 9 #type = subdir 10 10 11 [gtk]12 type = subdir11 #[gtk] 12 #type = subdir 13 13 14 [gtkD]15 type = subdir14 #[gtkD] 15 #type = subdir 16 16 17 17 #[gl] trunk/demos/gda/dsss.conf
r322 r340 7 7 type = binary 8 8 target = TestGda 9 buildflags = -I../../demos/ 9 buildflags = -I../../demos/ -no-export-dynamic 10 10 version(linux) { 11 buildflags = +=-I/usr/local/include/d-L-ldl11 buildflags += -L-ldl 12 12 } 13 13 version(Windows){ trunk/demos/gl/dsss.conf
r322 r340 6 6 type = binary 7 7 target = shapesGL 8 buildflags = -I../ 8 buildflags = -I../ -no-export-dynamic 9 9 version(linux) { 10 buildflags = +=-I/usr/local/include/d _L-lGL -L-lGLU -L-ldl10 buildflags += -L-lGL -L-lGLU -L-ldl 11 11 } 12 12 version(Windows){ trunk/demos/glade/dsss.conf
r333 r340 6 6 type = binary 7 7 target = gladeTest 8 buildflags = -I../../demos 8 buildflags = -I../../demos -no-export-dynamic 9 9 version(linux) { 10 10 buildflags +=-L-ldl trunk/demos/gtk/dsss.conf
r333 r340 6 6 type = binary 7 7 target = DrawRect 8 buildflags = -I../../demos 8 buildflags = -I../../demos -no-export-dynamic 9 9 version(linux) { 10 10 buildflags +=-L-ldl … … 17 17 type = binary 18 18 target = HelloWorld 19 buildflags = -I../../demos 19 buildflags = -I../../demos -no-export-dynamic 20 20 version(linux) { 21 21 buildflags +=-L-ldl … … 28 28 type = binary 29 29 target = OtherTests 30 buildflags = -I../../demos 30 buildflags = -I../../demos -no-export-dynamic 31 31 version(linux) { 32 32 buildflags +=-L-ldl … … 39 39 type = binary 40 40 target = SpawnTests 41 buildflags = -I../../demos 41 buildflags = -I../../demos -no-export-dynamic 42 42 version(linux) { 43 43 buildflags +=-L-ldl trunk/demos/gtkD/dsss.conf
r333 r340 6 6 type = binary 7 7 target = gtkDTests 8 buildflags = -I../../demos 8 buildflags = -I../../demos -no-export-dynamic 9 9 version(linux) { 10 10 buildflags +=-L-ldl trunk/demos/sourceView/dsss.conf
r322 r340 6 6 type = binary 7 7 target = SVTest 8 buildflags = -I../ 8 buildflags = -I../ -no-export-dynamic 9 9 version(linux) { 10 buildflags = +=-I/usr/local/include/d-L-lgtksourceview-1.0 -L-ldl10 buildflags += -L-lgtksourceview-1.0 -L-ldl 11 11 } 12 12 version(Windows){
