Документ взят из кэша поисковой машины. Адрес оригинального документа : http://kodomo.fbb.msu.ru/hg/allpy/rev/181ffe032584
Дата изменения: Unknown
Дата индексирования: Tue Oct 2 00:05:34 2012
Кодировка:
allpy: 181ffe032584

allpy

changeset 14:181ffe032584

unut commit
author boris <bnagaev@gmail.com>
date Tue, 14 Sep 2010 22:18:24 +0400
parents
children 29b6c19ff355
files .geany .hgignore blocks3d-wt.C blocks3d-wt.pro compile.sh compile_and_run.sh config.C config.h debug.sh run.sh
diffstat 10 files changed, 49 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/.geany	Tue Sep 14 22:18:24 2010 +0400
     1.3 @@ -0,0 +1,15 @@
     1.4 +
     1.5 +[indentation]
     1.6 +indent_width=2
     1.7 +indent_type=1
     1.8 +indent_hard_tab_width=2
     1.9 +detect_indent=true
    1.10 +indent_mode=2
    1.11 +
    1.12 +[project]
    1.13 +name=malakite-blocks3d-wt
    1.14 +base_path=/home/boris/my-code/Blocks3D/malakite-blocks3d-wt
    1.15 +make_in_base_path=false
    1.16 +
    1.17 +[files]
    1.18 +current_page=-1
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/.hgignore	Tue Sep 14 22:18:24 2010 +0400
     2.3 @@ -0,0 +1,3 @@
     2.4 +syntax: glob
     2.5 +*build*
     2.6 +*user_pictures*
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/blocks3d-wt.C	Tue Sep 14 22:18:24 2010 +0400
     3.3 @@ -0,0 +1,4 @@
     3.4 +
     3.5 +
     3.6 +#include "config.h"
     3.7 +
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/blocks3d-wt.pro	Tue Sep 14 22:18:24 2010 +0400
     4.3 @@ -0,0 +1,12 @@
     4.4 +TARGET = blocks3d-wt.exe
     4.5 +
     4.6 +SOURCES += config.C
     4.7 +SOURCES += blocks3d-wt.C
     4.8 +
     4.9 +CONFIG += debug
    4.10 +CONFIG += precompile_header
    4.11 +
    4.12 +
    4.13 +INCLUDEPATH = /usr/local/include/Wt/
    4.14 +
    4.15 +LIBS += -lwthttp -lwt
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/compile.sh	Tue Sep 14 22:18:24 2010 +0400
     5.3 @@ -0,0 +1,5 @@
     5.4 +cd build;
     5.5 +qmake ../blocks3d-wt.pro && make VERBOSE=0
     5.6 +#~ cmake .. && make VERBOSE=1
     5.7 +
     5.8 +
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/compile_and_run.sh	Tue Sep 14 22:18:24 2010 +0400
     6.3 @@ -0,0 +1,1 @@
     6.4 +./compile.sh && ./run.sh
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/config.C	Tue Sep 14 22:18:24 2010 +0400
     7.3 @@ -0,0 +1,3 @@
     7.4 +
     7.5 +#include "config.h"
     7.6 +
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/config.h	Tue Sep 14 22:18:24 2010 +0400
     8.3 @@ -0,0 +1,1 @@
     8.4 +
     9.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     9.2 +++ b/debug.sh	Tue Sep 14 22:18:24 2010 +0400
     9.3 @@ -0,0 +1,3 @@
     9.4 +cd ./build/; 
     9.5 +gdb --args ./blocks3d-wt.exe  -- run  --docroot . --http-address 0.0.0.0 --http-port 8000
     9.6 +
    10.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
    10.2 +++ b/run.sh	Tue Sep 14 22:18:24 2010 +0400
    10.3 @@ -0,0 +1,2 @@
    10.4 +cd ./build/; 
    10.5 +./blocks3d-wt.exe  --docroot . --http-address 0.0.0.0 --http-port 8000