c++ Programming Glossary: duse_boost
C: Good Habits re: Transitioning to C++ http://stackoverflow.com/questions/1420685/c-good-habits-re-transitioning-to-c
Create linux make/build file http://stackoverflow.com/questions/3576292/create-linux-make-build-file flags to be used for includes I and defines D CPPFLAGS DUSE_BOOST # CFLAGS is used for C compilation options. CFLAGS Wall O0 #.. make clean all Clean. rm f .o converter g Wall O0 DUSE_BOOST c o converter.o converter.cpp g Wall O0 DUSE_BOOST c o rawr.o.. Wall O0 DUSE_BOOST c o converter.o converter.cpp g Wall O0 DUSE_BOOST c o rawr.o rawr.cpp g Wall O0 DUSE_BOOST c o simple_ls.o simple_ls.cpp..
|