Changeset 4343 in orxonox.OLD for orxonox/trunk/src/subprojects/particles
- Timestamp:
- May 27, 2005, 10:17:18 PM (19 years ago)
- Location:
- orxonox/trunk/src/subprojects/particles
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/subprojects/particles/Makefile.am
r4338 r4343 36 36 -lpthread 37 37 38 particles_CPPFLAGS = $(GTK2_CFLAGS) $(GTHREAD_CFLAGS) $(CURL_CFLAGS) $(MSBITFIELDS) 38 particles_CPPFLAGS = -DGUI_MODULE \ 39 $(GTK2_CFLAGS) $(GTHREAD_CFLAGS) $(CURL_CFLAGS) $(MSBITFIELDS) 39 40 40 41 particles_SOURCES= ../framework.cc \ -
orxonox/trunk/src/subprojects/particles/Makefile.in
r4338 r4343 218 218 -lpthread 219 219 220 particles_CPPFLAGS = $(GTK2_CFLAGS) $(GTHREAD_CFLAGS) $(CURL_CFLAGS) $(MSBITFIELDS) 220 particles_CPPFLAGS = -DGUI_MODULE \ 221 $(GTK2_CFLAGS) $(GTHREAD_CFLAGS) $(CURL_CFLAGS) $(MSBITFIELDS) 222 221 223 particles_SOURCES = ../framework.cc \ 222 224 particle_fun.cc \ … … 255 257 esac; \ 256 258 done; \ 257 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- foreignsrc/subprojects/particles/Makefile'; \259 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/subprojects/particles/Makefile'; \ 258 260 cd $(top_srcdir) && \ 259 $(AUTOMAKE) -- foreignsrc/subprojects/particles/Makefile261 $(AUTOMAKE) --gnu src/subprojects/particles/Makefile 260 262 .PRECIOUS: Makefile 261 263 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/subprojects/particles/particle_fun.cc
r4342 r4343 22 22 23 23 24 void Framework::moduleInit( )24 void Framework::moduleInit(int argc, char** argv) 25 25 { 26 26 // Creating a Test Particle System … … 174 174 175 175 176 void Framework::moduleInitGui( void)176 void Framework::moduleInitGui(int argc, char** argv) 177 177 { 178 178 Window* guiMainWindow = NULL;
Note: See TracChangeset
for help on using the changeset viewer.