qvolray

diff qvolray.pro @ 27:011ac823600c

broken up the OpenGL code to multiple source files (untested)
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 14 Apr 2012 06:37:31 +0300
parents c27ce79632db
children 93d889a3726a
line diff
     1.1 --- a/qvolray.pro	Sat Apr 14 04:59:14 2012 +0300
     1.2 +++ b/qvolray.pro	Sat Apr 14 06:37:31 2012 +0300
     1.3 @@ -21,6 +21,16 @@
     1.4  	QMAKE_LIBDIR += /opt/local/lib
     1.5  }
     1.6  
     1.7 -# Input
     1.8 -HEADERS += src/sdr.h src/volray.h src/volume.h src/ui.h
     1.9 -SOURCES += src/main.cc src/sdr.c src/volray.cc src/volume.cc src/ui.cc src/demo.cc
    1.10 +# the moc needs to run for these headers
    1.11 +HEADERS = src/ui.h \
    1.12 +	src/ui_maingl.h \
    1.13 +	src/ui_sliceview.h
    1.14 +
    1.15 +SOURCES = src/main.cc \
    1.16 +	src/sdr.c \
    1.17 +	src/volray.cc \
    1.18 +	src/volume.cc \
    1.19 +	src/ui.cc \
    1.20 +	src/ui_maingl.cc \
    1.21 +	src/ui_sliceview.cc \
    1.22 +	src/demo.cc