├── .gitignore ├── CMakeLists.txt ├── PRECOMPILEDHEADERS ├── README.md ├── README.zh.md ├── SOURCEFILES ├── benchmark └── loop │ ├── Hello.cpp │ └── Hello.py ├── config.txt.sample ├── cpps.cbp ├── cpps.epmprj ├── cpps.sln ├── cpps.vcxproj ├── docs ├── bug-of-markdeep.txt ├── build-using-codeblocks.docx ├── index.html ├── markdeep.min.js └── use-cpps-with-editors │ └── EverEdit.docx ├── examples ├── bison++ │ ├── a.y │ └── main.cpp ├── bison │ ├── a.y │ └── main.cpp ├── config.linux.txt ├── config.win.txt ├── flex++ │ ├── a.l │ └── main.cpp ├── flex-bison++ │ ├── calc++.cpp │ ├── driver.cpp │ ├── driver.h │ ├── input.txt │ ├── parser.y │ └── scanner.l ├── flex │ ├── a.l │ └── main.cpp ├── gcc-pch │ ├── hello.cpp │ └── std.h ├── hello-boost │ └── main.cpp ├── hello-fltk-fluid │ ├── main.cpp │ ├── ui.cxx │ ├── ui.fl │ └── ui.h ├── hello-fltk │ └── texteditor-simple.cpp ├── hello-multiple-sources │ ├── bar.h │ ├── foo.cpp │ ├── foo.h │ ├── hello.cpp │ ├── how-to-run.txt │ └── qux.cpp ├── hello-nana │ └── main.cpp ├── hello-qt-moc-macro │ ├── finddialog.cpp │ ├── finddialog.h │ └── main.cpp ├── hello-qt-moc-shadow │ ├── finddialog.cpp │ ├── finddialog.h │ └── main.cpp ├── hello-qt-moc-uic-qrc-macro │ ├── diagramwindow.cpp │ ├── diagramwindow.h │ ├── images │ │ ├── bringtofront.png │ │ ├── colors.png │ │ ├── copy.png │ │ ├── cut.png │ │ ├── delete.png │ │ ├── link.png │ │ ├── node.png │ │ ├── paste.png │ │ └── sendtoback.png │ ├── link.cpp │ ├── link.h │ ├── main.cpp │ ├── node.cpp │ ├── node.h │ ├── propertiesdialog.cpp │ ├── propertiesdialog.h │ ├── propertiesdialog.ui │ ├── resources.qrc │ └── stable.h ├── hello-qt-moc │ ├── finddialog.cpp │ ├── finddialog.h │ ├── finddialog.h.moc.cpp │ └── main.cpp ├── hello-qt-uic-macro │ ├── gotocelldialog.ui │ └── main.cpp ├── hello-qt-uic │ ├── gotocelldialog.ui │ ├── main.cpp │ └── ui_gotocelldialog.h ├── hello-qt │ └── quit.cpp ├── hello │ └── hello.cpp └── vc-pch │ ├── README.md │ ├── hello.cpp │ ├── std.cpp │ └── std.h ├── finderror ├── finderror.cbp ├── finderror.cpp └── finderror.vcxproj ├── generalcxx-debug.options ├── generallink-any.options ├── how-to-build-cpps.md ├── macro ├── bison++.txt ├── bison.txt ├── flex++.txt ├── flex.txt ├── qt-moc.txt ├── qt-rcc.txt └── qt-uic.txt ├── minised ├── minised.1.html ├── minised.exe ├── readme.txt └── test │ ├── .gitignore │ ├── a.bat │ ├── a.sh │ ├── bigsed.txt │ ├── bug.txt │ ├── foo.h │ ├── main.cpp │ ├── main.inc │ └── ok.txt ├── note.txt ├── src ├── Action.cpp ├── Action.h ├── ArgvQuote.cpp ├── ArgvQuote.h ├── Birthcert.cpp ├── Birthcert.h ├── CmdLineBuilder.cpp ├── CmdLineBuilder.h ├── CompilerInfo.cpp ├── CompilerInfo.h ├── DepInfo.h ├── Entity.cpp ├── Entity.h ├── FileEntity.cpp ├── FileEntity.h ├── FileSig.h ├── FollowRecipeAction.cpp ├── FollowRecipeAction.h ├── GccCmdLineBuilder.cpp ├── GccCmdLineBuilder.h ├── GccCpp2ObjAction.cpp ├── GccCpp2ObjAction.h ├── GccObj2ExeAction.cpp ├── GccObj2ExeAction.h ├── GchMagic.cpp ├── GchMagic.h ├── H2GchAction.cpp ├── H2GchAction.h ├── InfoPackageScanned.h ├── Loggers.cpp ├── Loggers.h ├── MingwCmdLineBuilder.cpp ├── MingwCmdLineBuilder.h ├── MiniLogger.cpp ├── MiniLogger.h ├── PhonyEntity.cpp ├── PhonyEntity.h ├── SafeCD.h ├── ShebangMagic.cpp ├── ShebangMagic.h ├── UpdateGraphAction.cpp ├── UpdateGraphAction.h ├── UserDefinedRule.cpp ├── UserDefinedRule.h ├── VcCmdLineBuilder.cpp ├── VcCmdLineBuilder.h ├── VcCpp2ObjAction.cpp ├── VcCpp2ObjAction.h ├── VcObj2ExeAction.cpp ├── VcObj2ExeAction.h ├── build.cpp ├── config.cpp ├── config.h ├── config.h.in ├── fwd.h ├── gen.cpp ├── global.cpp ├── global.h ├── helpers.cpp ├── helpers.h ├── main.cpp ├── parse.cpp ├── run.cpp ├── samples.cpp ├── samples.h ├── scan.cpp ├── sha1.cpp └── sha1.hpp ├── test ├── .gitignore ├── README.md ├── cppandc │ ├── foo.cpp │ ├── foo.h │ └── hello.c ├── hello-fltk │ └── hello-fltk.cpp ├── hello-pch │ ├── backup │ │ ├── main-easy.cpp │ │ ├── main-welcome.cpp │ │ ├── std-a.h │ │ └── std-b.h │ ├── foo.h │ ├── main.cpp │ ├── run-gcc.sh │ ├── run-mingw.bat │ ├── run-vc.bat │ ├── std.cpp │ └── std.h ├── helloworld │ ├── foo.h │ ├── hello.cpp │ └── run-vc.bat ├── incremental-scan │ ├── backup │ │ ├── int-one.cpp │ │ ├── int-one.h │ │ ├── int-three.cpp │ │ ├── int-three.h │ │ ├── void-one.cpp │ │ ├── void-one.h │ │ ├── void-three.cpp │ │ └── void-three.h │ ├── five.cpp │ ├── five.h │ ├── four.cpp │ ├── four.h │ ├── main.cpp │ ├── one.cpp │ ├── one.h │ ├── run-gcc.sh │ ├── run-mingw.bat │ ├── run-vc.bat │ ├── three.cpp │ ├── three.h │ ├── two.cpp │ └── two.h ├── input │ ├── hello.cpp │ └── run-gcc.sh ├── manydirs │ ├── a │ │ ├── foo.cpp │ │ └── foo.h │ ├── b │ │ ├── bar.cpp │ │ └── bar.h │ ├── hello.cpp │ └── std.h ├── moved-gch │ ├── main.cpp │ ├── run-gcc.sh │ └── std.h ├── moved-header │ ├── foo.h │ ├── main.cpp │ └── run-gcc.sh ├── multiple-srcs │ ├── .gitignore │ ├── backup │ │ ├── bar.cpp │ │ ├── main-nocheck.cpp │ │ └── main.cpp │ ├── bar.h │ ├── check.py │ ├── foo.cpp │ ├── foo.h │ ├── main.cpp │ ├── run-gcc.sh │ ├── run-mingw.bat │ └── run-vc.bat ├── obsolete │ └── tests ├── sh2bat.sh ├── shortcut │ ├── .gitignore │ ├── a.txt │ ├── check.py │ ├── hello.cpps │ └── here │ │ └── hello.cpp ├── show-args │ ├── .gitignore │ ├── obsolete │ │ ├── check.cpp │ │ └── check.py │ ├── run-clang.sh │ ├── run-gcc.sh │ ├── run-mingw.bat │ ├── run-vc.bat │ └── show-args.cpp ├── size │ ├── .gitignore │ ├── README.md │ ├── backup │ │ ├── big.cpp │ │ └── small.cpp │ ├── check.py │ └── hello.cpp ├── suffix │ ├── bar.C │ ├── bar.h │ ├── foo.c++ │ ├── foo.h │ └── hello.cxx ├── test-all-clang.sh ├── test-all-gcc.sh ├── test-all-mingw.bat ├── test-all-vc.bat ├── test-gch │ ├── bar.cpp │ ├── bar.h │ ├── foo.cpp │ ├── foo.h │ ├── hello.cpp │ └── std.h ├── test-perm │ ├── .gitignore │ ├── check.py │ └── perm │ │ ├── hello.cpp │ │ └── std.h ├── test-shebang │ ├── .gitignore │ ├── a.txt │ ├── check.py │ └── test-shebang.cpp ├── test-this-clang.sh ├── test-this-gcc.sh ├── test-this-mingw.bat ├── test-this-vc.bat ├── time │ ├── .gitignore │ ├── backup │ │ └── hello.cpp │ ├── hello.cpp │ ├── obsolete │ │ └── check.py │ └── run-gcc.sh ├── use-lib │ ├── .gitignore │ ├── hello.cpp │ ├── obsolete │ │ └── check.py │ └── run-gcc.sh ├── using-a-cpp-many-times │ ├── bar.cpp │ ├── bar.h │ ├── foo.cpp │ ├── foo.h │ ├── main.cpp │ ├── run-gcc.sh │ ├── run-mingw.bat │ └── run-vc.bat └── white space in path │ ├── main.cpp │ ├── run-gcc.sh │ ├── run-mingw.bat │ └── run-vc.bat ├── vc-config-gen ├── pch.cpp ├── pch.h ├── vc-config-gen.cbp ├── vc-config-gen.cpp ├── vc-config-gen.depend └── vc-config-gen.vcxproj ├── vs-props ├── boost.props └── readme.md └── windows-publish ├── .gitignore ├── mingw-collect-pre-built-binaries.bat └── vc-collect-pre-built-binaries.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /PRECOMPILEDHEADERS: -------------------------------------------------------------------------------- 1 | src/config.h 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/README.zh.md -------------------------------------------------------------------------------- /SOURCEFILES: -------------------------------------------------------------------------------- 1 | src/*.cpp 2 | -------------------------------------------------------------------------------- /benchmark/loop/Hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/benchmark/loop/Hello.cpp -------------------------------------------------------------------------------- /benchmark/loop/Hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/benchmark/loop/Hello.py -------------------------------------------------------------------------------- /config.txt.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/config.txt.sample -------------------------------------------------------------------------------- /cpps.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/cpps.cbp -------------------------------------------------------------------------------- /cpps.epmprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/cpps.epmprj -------------------------------------------------------------------------------- /cpps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/cpps.sln -------------------------------------------------------------------------------- /cpps.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/cpps.vcxproj -------------------------------------------------------------------------------- /docs/bug-of-markdeep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/docs/bug-of-markdeep.txt -------------------------------------------------------------------------------- /docs/build-using-codeblocks.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/docs/build-using-codeblocks.docx -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/markdeep.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/docs/markdeep.min.js -------------------------------------------------------------------------------- /docs/use-cpps-with-editors/EverEdit.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/docs/use-cpps-with-editors/EverEdit.docx -------------------------------------------------------------------------------- /examples/bison++/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/bison++/a.y -------------------------------------------------------------------------------- /examples/bison++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/bison++/main.cpp -------------------------------------------------------------------------------- /examples/bison/a.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/bison/a.y -------------------------------------------------------------------------------- /examples/bison/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/bison/main.cpp -------------------------------------------------------------------------------- /examples/config.linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/config.linux.txt -------------------------------------------------------------------------------- /examples/config.win.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/config.win.txt -------------------------------------------------------------------------------- /examples/flex++/a.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/flex++/a.l -------------------------------------------------------------------------------- /examples/flex++/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/flex++/main.cpp -------------------------------------------------------------------------------- /examples/flex-bison++/calc++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/flex-bison++/calc++.cpp -------------------------------------------------------------------------------- /examples/flex-bison++/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/flex-bison++/driver.cpp -------------------------------------------------------------------------------- /examples/flex-bison++/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/flex-bison++/driver.h -------------------------------------------------------------------------------- /examples/flex-bison++/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/flex-bison++/input.txt -------------------------------------------------------------------------------- /examples/flex-bison++/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/flex-bison++/parser.y -------------------------------------------------------------------------------- /examples/flex-bison++/scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/flex-bison++/scanner.l -------------------------------------------------------------------------------- /examples/flex/a.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/flex/a.l -------------------------------------------------------------------------------- /examples/flex/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/flex/main.cpp -------------------------------------------------------------------------------- /examples/gcc-pch/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/gcc-pch/hello.cpp -------------------------------------------------------------------------------- /examples/gcc-pch/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/gcc-pch/std.h -------------------------------------------------------------------------------- /examples/hello-boost/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-boost/main.cpp -------------------------------------------------------------------------------- /examples/hello-fltk-fluid/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-fltk-fluid/main.cpp -------------------------------------------------------------------------------- /examples/hello-fltk-fluid/ui.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-fltk-fluid/ui.cxx -------------------------------------------------------------------------------- /examples/hello-fltk-fluid/ui.fl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-fltk-fluid/ui.fl -------------------------------------------------------------------------------- /examples/hello-fltk-fluid/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-fltk-fluid/ui.h -------------------------------------------------------------------------------- /examples/hello-fltk/texteditor-simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-fltk/texteditor-simple.cpp -------------------------------------------------------------------------------- /examples/hello-multiple-sources/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-multiple-sources/bar.h -------------------------------------------------------------------------------- /examples/hello-multiple-sources/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-multiple-sources/foo.cpp -------------------------------------------------------------------------------- /examples/hello-multiple-sources/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-multiple-sources/foo.h -------------------------------------------------------------------------------- /examples/hello-multiple-sources/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-multiple-sources/hello.cpp -------------------------------------------------------------------------------- /examples/hello-multiple-sources/how-to-run.txt: -------------------------------------------------------------------------------- 1 | cpps hello.cpp 2 | -------------------------------------------------------------------------------- /examples/hello-multiple-sources/qux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-multiple-sources/qux.cpp -------------------------------------------------------------------------------- /examples/hello-nana/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-nana/main.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc-macro/finddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-macro/finddialog.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc-macro/finddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-macro/finddialog.h -------------------------------------------------------------------------------- /examples/hello-qt-moc-macro/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-macro/main.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc-shadow/finddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-shadow/finddialog.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc-shadow/finddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-shadow/finddialog.h -------------------------------------------------------------------------------- /examples/hello-qt-moc-shadow/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-shadow/main.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/diagramwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/diagramwindow.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/diagramwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/diagramwindow.h -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/images/bringtofront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/images/bringtofront.png -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/images/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/images/colors.png -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/images/copy.png -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/images/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/images/cut.png -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/images/delete.png -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/images/link.png -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/images/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/images/node.png -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/images/paste.png -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/images/sendtoback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/images/sendtoback.png -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/link.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/link.h -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/main.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/node.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/node.h -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/propertiesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/propertiesdialog.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/propertiesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/propertiesdialog.h -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/propertiesdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/propertiesdialog.ui -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/resources.qrc -------------------------------------------------------------------------------- /examples/hello-qt-moc-uic-qrc-macro/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc-uic-qrc-macro/stable.h -------------------------------------------------------------------------------- /examples/hello-qt-moc/finddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc/finddialog.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc/finddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc/finddialog.h -------------------------------------------------------------------------------- /examples/hello-qt-moc/finddialog.h.moc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc/finddialog.h.moc.cpp -------------------------------------------------------------------------------- /examples/hello-qt-moc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-moc/main.cpp -------------------------------------------------------------------------------- /examples/hello-qt-uic-macro/gotocelldialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-uic-macro/gotocelldialog.ui -------------------------------------------------------------------------------- /examples/hello-qt-uic-macro/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-uic-macro/main.cpp -------------------------------------------------------------------------------- /examples/hello-qt-uic/gotocelldialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-uic/gotocelldialog.ui -------------------------------------------------------------------------------- /examples/hello-qt-uic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-uic/main.cpp -------------------------------------------------------------------------------- /examples/hello-qt-uic/ui_gotocelldialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt-uic/ui_gotocelldialog.h -------------------------------------------------------------------------------- /examples/hello-qt/quit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello-qt/quit.cpp -------------------------------------------------------------------------------- /examples/hello/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/hello/hello.cpp -------------------------------------------------------------------------------- /examples/vc-pch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/vc-pch/README.md -------------------------------------------------------------------------------- /examples/vc-pch/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/vc-pch/hello.cpp -------------------------------------------------------------------------------- /examples/vc-pch/std.cpp: -------------------------------------------------------------------------------- 1 | #include "std.h" // precompile 2 | -------------------------------------------------------------------------------- /examples/vc-pch/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/examples/vc-pch/std.h -------------------------------------------------------------------------------- /finderror/finderror.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/finderror/finderror.cbp -------------------------------------------------------------------------------- /finderror/finderror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/finderror/finderror.cpp -------------------------------------------------------------------------------- /finderror/finderror.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/finderror/finderror.vcxproj -------------------------------------------------------------------------------- /generalcxx-debug.options: -------------------------------------------------------------------------------- 1 | -std=c++0x 2 | -ggdb 3 | -------------------------------------------------------------------------------- /generallink-any.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/generallink-any.options -------------------------------------------------------------------------------- /how-to-build-cpps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/how-to-build-cpps.md -------------------------------------------------------------------------------- /macro/bison++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/macro/bison++.txt -------------------------------------------------------------------------------- /macro/bison.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/macro/bison.txt -------------------------------------------------------------------------------- /macro/flex++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/macro/flex++.txt -------------------------------------------------------------------------------- /macro/flex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/macro/flex.txt -------------------------------------------------------------------------------- /macro/qt-moc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/macro/qt-moc.txt -------------------------------------------------------------------------------- /macro/qt-rcc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/macro/qt-rcc.txt -------------------------------------------------------------------------------- /macro/qt-uic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/macro/qt-uic.txt -------------------------------------------------------------------------------- /minised/minised.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/minised/minised.1.html -------------------------------------------------------------------------------- /minised/minised.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/minised/minised.exe -------------------------------------------------------------------------------- /minised/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/minised/readme.txt -------------------------------------------------------------------------------- /minised/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.obj 2 | *.exe 3 | 4 | -------------------------------------------------------------------------------- /minised/test/a.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/minised/test/a.bat -------------------------------------------------------------------------------- /minised/test/a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/minised/test/a.sh -------------------------------------------------------------------------------- /minised/test/bigsed.txt: -------------------------------------------------------------------------------- 1 | Note: including file: F:\myprj\cpps\minised\test\foo.h 2 | -------------------------------------------------------------------------------- /minised/test/bug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/minised/test/bug.txt -------------------------------------------------------------------------------- /minised/test/foo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minised/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/minised/test/main.cpp -------------------------------------------------------------------------------- /minised/test/main.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/minised/test/main.inc -------------------------------------------------------------------------------- /minised/test/ok.txt: -------------------------------------------------------------------------------- 1 | Note: including file: F:\myprj\cpps\minised\test\foo.h 2 | -------------------------------------------------------------------------------- /note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/note.txt -------------------------------------------------------------------------------- /src/Action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/Action.cpp -------------------------------------------------------------------------------- /src/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/Action.h -------------------------------------------------------------------------------- /src/ArgvQuote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/ArgvQuote.cpp -------------------------------------------------------------------------------- /src/ArgvQuote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/ArgvQuote.h -------------------------------------------------------------------------------- /src/Birthcert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/Birthcert.cpp -------------------------------------------------------------------------------- /src/Birthcert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/Birthcert.h -------------------------------------------------------------------------------- /src/CmdLineBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/CmdLineBuilder.cpp -------------------------------------------------------------------------------- /src/CmdLineBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/CmdLineBuilder.h -------------------------------------------------------------------------------- /src/CompilerInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/CompilerInfo.cpp -------------------------------------------------------------------------------- /src/CompilerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/CompilerInfo.h -------------------------------------------------------------------------------- /src/DepInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/DepInfo.h -------------------------------------------------------------------------------- /src/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/Entity.cpp -------------------------------------------------------------------------------- /src/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/Entity.h -------------------------------------------------------------------------------- /src/FileEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/FileEntity.cpp -------------------------------------------------------------------------------- /src/FileEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/FileEntity.h -------------------------------------------------------------------------------- /src/FileSig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/FileSig.h -------------------------------------------------------------------------------- /src/FollowRecipeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/FollowRecipeAction.cpp -------------------------------------------------------------------------------- /src/FollowRecipeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/FollowRecipeAction.h -------------------------------------------------------------------------------- /src/GccCmdLineBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/GccCmdLineBuilder.cpp -------------------------------------------------------------------------------- /src/GccCmdLineBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/GccCmdLineBuilder.h -------------------------------------------------------------------------------- /src/GccCpp2ObjAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/GccCpp2ObjAction.cpp -------------------------------------------------------------------------------- /src/GccCpp2ObjAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/GccCpp2ObjAction.h -------------------------------------------------------------------------------- /src/GccObj2ExeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/GccObj2ExeAction.cpp -------------------------------------------------------------------------------- /src/GccObj2ExeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/GccObj2ExeAction.h -------------------------------------------------------------------------------- /src/GchMagic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/GchMagic.cpp -------------------------------------------------------------------------------- /src/GchMagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/GchMagic.h -------------------------------------------------------------------------------- /src/H2GchAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/H2GchAction.cpp -------------------------------------------------------------------------------- /src/H2GchAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/H2GchAction.h -------------------------------------------------------------------------------- /src/InfoPackageScanned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/InfoPackageScanned.h -------------------------------------------------------------------------------- /src/Loggers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/Loggers.cpp -------------------------------------------------------------------------------- /src/Loggers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/Loggers.h -------------------------------------------------------------------------------- /src/MingwCmdLineBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/MingwCmdLineBuilder.cpp -------------------------------------------------------------------------------- /src/MingwCmdLineBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/MingwCmdLineBuilder.h -------------------------------------------------------------------------------- /src/MiniLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/MiniLogger.cpp -------------------------------------------------------------------------------- /src/MiniLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/MiniLogger.h -------------------------------------------------------------------------------- /src/PhonyEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/PhonyEntity.cpp -------------------------------------------------------------------------------- /src/PhonyEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/PhonyEntity.h -------------------------------------------------------------------------------- /src/SafeCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/SafeCD.h -------------------------------------------------------------------------------- /src/ShebangMagic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/ShebangMagic.cpp -------------------------------------------------------------------------------- /src/ShebangMagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/ShebangMagic.h -------------------------------------------------------------------------------- /src/UpdateGraphAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/UpdateGraphAction.cpp -------------------------------------------------------------------------------- /src/UpdateGraphAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/UpdateGraphAction.h -------------------------------------------------------------------------------- /src/UserDefinedRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/UserDefinedRule.cpp -------------------------------------------------------------------------------- /src/UserDefinedRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/UserDefinedRule.h -------------------------------------------------------------------------------- /src/VcCmdLineBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/VcCmdLineBuilder.cpp -------------------------------------------------------------------------------- /src/VcCmdLineBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/VcCmdLineBuilder.h -------------------------------------------------------------------------------- /src/VcCpp2ObjAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/VcCpp2ObjAction.cpp -------------------------------------------------------------------------------- /src/VcCpp2ObjAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/VcCpp2ObjAction.h -------------------------------------------------------------------------------- /src/VcObj2ExeAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/VcObj2ExeAction.cpp -------------------------------------------------------------------------------- /src/VcObj2ExeAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/VcObj2ExeAction.h -------------------------------------------------------------------------------- /src/build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/build.cpp -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- 1 | #include "config.h" 2 | -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/config.h -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/fwd.h -------------------------------------------------------------------------------- /src/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/gen.cpp -------------------------------------------------------------------------------- /src/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/global.cpp -------------------------------------------------------------------------------- /src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/global.h -------------------------------------------------------------------------------- /src/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/helpers.cpp -------------------------------------------------------------------------------- /src/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/helpers.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/parse.cpp -------------------------------------------------------------------------------- /src/run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/run.cpp -------------------------------------------------------------------------------- /src/samples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/samples.cpp -------------------------------------------------------------------------------- /src/samples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/samples.h -------------------------------------------------------------------------------- /src/scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/scan.cpp -------------------------------------------------------------------------------- /src/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/sha1.cpp -------------------------------------------------------------------------------- /src/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/src/sha1.hpp -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | *.obj 2 | *.o 3 | *.exe 4 | 5 | -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/README.md -------------------------------------------------------------------------------- /test/cppandc/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/cppandc/foo.cpp -------------------------------------------------------------------------------- /test/cppandc/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/cppandc/foo.h -------------------------------------------------------------------------------- /test/cppandc/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/cppandc/hello.c -------------------------------------------------------------------------------- /test/hello-fltk/hello-fltk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/hello-fltk/hello-fltk.cpp -------------------------------------------------------------------------------- /test/hello-pch/backup/main-easy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/hello-pch/backup/main-easy.cpp -------------------------------------------------------------------------------- /test/hello-pch/backup/main-welcome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/hello-pch/backup/main-welcome.cpp -------------------------------------------------------------------------------- /test/hello-pch/backup/std-a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/hello-pch/backup/std-a.h -------------------------------------------------------------------------------- /test/hello-pch/backup/std-b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/hello-pch/backup/std-b.h -------------------------------------------------------------------------------- /test/hello-pch/foo.h: -------------------------------------------------------------------------------- 1 | void foo(); // ssss -------------------------------------------------------------------------------- /test/hello-pch/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/hello-pch/main.cpp -------------------------------------------------------------------------------- /test/hello-pch/run-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/hello-pch/run-gcc.sh -------------------------------------------------------------------------------- /test/hello-pch/run-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/hello-pch/run-mingw.bat -------------------------------------------------------------------------------- /test/hello-pch/run-vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/hello-pch/run-vc.bat -------------------------------------------------------------------------------- /test/hello-pch/std.cpp: -------------------------------------------------------------------------------- 1 | #include "std.h" // precompile 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/hello-pch/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/hello-pch/std.h -------------------------------------------------------------------------------- /test/helloworld/foo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helloworld/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/helloworld/hello.cpp -------------------------------------------------------------------------------- /test/helloworld/run-vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/helloworld/run-vc.bat -------------------------------------------------------------------------------- /test/incremental-scan/backup/int-one.cpp: -------------------------------------------------------------------------------- 1 | #include "two.h" // usingcpp 2 | 3 | int one() 4 | { 5 | return 1; 6 | } 7 | -------------------------------------------------------------------------------- /test/incremental-scan/backup/int-one.h: -------------------------------------------------------------------------------- 1 | int one(); -------------------------------------------------------------------------------- /test/incremental-scan/backup/int-three.cpp: -------------------------------------------------------------------------------- 1 | #include "four.h" // usingcpp 2 | 3 | int three() 4 | { 5 | return 3; 6 | } 7 | -------------------------------------------------------------------------------- /test/incremental-scan/backup/int-three.h: -------------------------------------------------------------------------------- 1 | int three(); 2 | -------------------------------------------------------------------------------- /test/incremental-scan/backup/void-one.cpp: -------------------------------------------------------------------------------- 1 | #include "two.h" // usingcpp 2 | 3 | void one() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /test/incremental-scan/backup/void-one.h: -------------------------------------------------------------------------------- 1 | void one(); -------------------------------------------------------------------------------- /test/incremental-scan/backup/void-three.cpp: -------------------------------------------------------------------------------- 1 | #include "four.h" // usingcpp 2 | 3 | void three() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /test/incremental-scan/backup/void-three.h: -------------------------------------------------------------------------------- 1 | void three(); 2 | -------------------------------------------------------------------------------- /test/incremental-scan/five.cpp: -------------------------------------------------------------------------------- 1 | void five() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /test/incremental-scan/five.h: -------------------------------------------------------------------------------- 1 | void five(); 2 | -------------------------------------------------------------------------------- /test/incremental-scan/four.cpp: -------------------------------------------------------------------------------- 1 | #include "five.h" // usingcpp 2 | 3 | void four() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /test/incremental-scan/four.h: -------------------------------------------------------------------------------- 1 | void four(); 2 | -------------------------------------------------------------------------------- /test/incremental-scan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/incremental-scan/main.cpp -------------------------------------------------------------------------------- /test/incremental-scan/one.cpp: -------------------------------------------------------------------------------- 1 | #include "two.h" // usingcpp 2 | 3 | int one() 4 | { 5 | return 1; 6 | } 7 | -------------------------------------------------------------------------------- /test/incremental-scan/one.h: -------------------------------------------------------------------------------- 1 | int one(); -------------------------------------------------------------------------------- /test/incremental-scan/run-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/incremental-scan/run-gcc.sh -------------------------------------------------------------------------------- /test/incremental-scan/run-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/incremental-scan/run-mingw.bat -------------------------------------------------------------------------------- /test/incremental-scan/run-vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/incremental-scan/run-vc.bat -------------------------------------------------------------------------------- /test/incremental-scan/three.cpp: -------------------------------------------------------------------------------- 1 | #include "four.h" // usingcpp 2 | 3 | int three() 4 | { 5 | return 3; 6 | } 7 | -------------------------------------------------------------------------------- /test/incremental-scan/three.h: -------------------------------------------------------------------------------- 1 | int three(); 2 | -------------------------------------------------------------------------------- /test/incremental-scan/two.cpp: -------------------------------------------------------------------------------- 1 | #include "three.h" // usingcpp 2 | 3 | void two() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /test/incremental-scan/two.h: -------------------------------------------------------------------------------- 1 | void two(); 2 | -------------------------------------------------------------------------------- /test/input/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/input/hello.cpp -------------------------------------------------------------------------------- /test/input/run-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/input/run-gcc.sh -------------------------------------------------------------------------------- /test/manydirs/a/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/manydirs/a/foo.cpp -------------------------------------------------------------------------------- /test/manydirs/a/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/manydirs/a/foo.h -------------------------------------------------------------------------------- /test/manydirs/b/bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/manydirs/b/bar.cpp -------------------------------------------------------------------------------- /test/manydirs/b/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/manydirs/b/bar.h -------------------------------------------------------------------------------- /test/manydirs/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/manydirs/hello.cpp -------------------------------------------------------------------------------- /test/manydirs/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/manydirs/std.h -------------------------------------------------------------------------------- /test/moved-gch/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/moved-gch/main.cpp -------------------------------------------------------------------------------- /test/moved-gch/run-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/moved-gch/run-gcc.sh -------------------------------------------------------------------------------- /test/moved-gch/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/moved-gch/std.h -------------------------------------------------------------------------------- /test/moved-header/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/moved-header/foo.h -------------------------------------------------------------------------------- /test/moved-header/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/moved-header/main.cpp -------------------------------------------------------------------------------- /test/moved-header/run-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/moved-header/run-gcc.sh -------------------------------------------------------------------------------- /test/multiple-srcs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/.gitignore -------------------------------------------------------------------------------- /test/multiple-srcs/backup/bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/backup/bar.cpp -------------------------------------------------------------------------------- /test/multiple-srcs/backup/main-nocheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/backup/main-nocheck.cpp -------------------------------------------------------------------------------- /test/multiple-srcs/backup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/backup/main.cpp -------------------------------------------------------------------------------- /test/multiple-srcs/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/bar.h -------------------------------------------------------------------------------- /test/multiple-srcs/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/check.py -------------------------------------------------------------------------------- /test/multiple-srcs/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/foo.cpp -------------------------------------------------------------------------------- /test/multiple-srcs/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/foo.h -------------------------------------------------------------------------------- /test/multiple-srcs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/main.cpp -------------------------------------------------------------------------------- /test/multiple-srcs/run-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/run-gcc.sh -------------------------------------------------------------------------------- /test/multiple-srcs/run-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/run-mingw.bat -------------------------------------------------------------------------------- /test/multiple-srcs/run-vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/multiple-srcs/run-vc.bat -------------------------------------------------------------------------------- /test/obsolete/tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/obsolete/tests -------------------------------------------------------------------------------- /test/sh2bat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/sh2bat.sh -------------------------------------------------------------------------------- /test/shortcut/.gitignore: -------------------------------------------------------------------------------- 1 | b.txt 2 | -------------------------------------------------------------------------------- /test/shortcut/a.txt: -------------------------------------------------------------------------------- 1 | I am a script. 2 | -------------------------------------------------------------------------------- /test/shortcut/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/shortcut/check.py -------------------------------------------------------------------------------- /test/shortcut/hello.cpps: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env cpps 2 | here/hello.cpp 3 | -------------------------------------------------------------------------------- /test/shortcut/here/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/shortcut/here/hello.cpp -------------------------------------------------------------------------------- /test/show-args/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/show-args/.gitignore -------------------------------------------------------------------------------- /test/show-args/obsolete/check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/show-args/obsolete/check.cpp -------------------------------------------------------------------------------- /test/show-args/obsolete/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/show-args/obsolete/check.py -------------------------------------------------------------------------------- /test/show-args/run-clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/show-args/run-clang.sh -------------------------------------------------------------------------------- /test/show-args/run-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/show-args/run-gcc.sh -------------------------------------------------------------------------------- /test/show-args/run-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/show-args/run-mingw.bat -------------------------------------------------------------------------------- /test/show-args/run-vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/show-args/run-vc.bat -------------------------------------------------------------------------------- /test/show-args/show-args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/show-args/show-args.cpp -------------------------------------------------------------------------------- /test/size/.gitignore: -------------------------------------------------------------------------------- 1 | a.txt 2 | -------------------------------------------------------------------------------- /test/size/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/size/README.md -------------------------------------------------------------------------------- /test/size/backup/big.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/size/backup/big.cpp -------------------------------------------------------------------------------- /test/size/backup/small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/size/backup/small.cpp -------------------------------------------------------------------------------- /test/size/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/size/check.py -------------------------------------------------------------------------------- /test/size/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/size/hello.cpp -------------------------------------------------------------------------------- /test/suffix/bar.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/suffix/bar.C -------------------------------------------------------------------------------- /test/suffix/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/suffix/bar.h -------------------------------------------------------------------------------- /test/suffix/foo.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/suffix/foo.c++ -------------------------------------------------------------------------------- /test/suffix/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/suffix/foo.h -------------------------------------------------------------------------------- /test/suffix/hello.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/suffix/hello.cxx -------------------------------------------------------------------------------- /test/test-all-clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-all-clang.sh -------------------------------------------------------------------------------- /test/test-all-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-all-gcc.sh -------------------------------------------------------------------------------- /test/test-all-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-all-mingw.bat -------------------------------------------------------------------------------- /test/test-all-vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-all-vc.bat -------------------------------------------------------------------------------- /test/test-gch/bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-gch/bar.cpp -------------------------------------------------------------------------------- /test/test-gch/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-gch/bar.h -------------------------------------------------------------------------------- /test/test-gch/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-gch/foo.cpp -------------------------------------------------------------------------------- /test/test-gch/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-gch/foo.h -------------------------------------------------------------------------------- /test/test-gch/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-gch/hello.cpp -------------------------------------------------------------------------------- /test/test-gch/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-gch/std.h -------------------------------------------------------------------------------- /test/test-perm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-perm/.gitignore -------------------------------------------------------------------------------- /test/test-perm/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-perm/check.py -------------------------------------------------------------------------------- /test/test-perm/perm/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-perm/perm/hello.cpp -------------------------------------------------------------------------------- /test/test-perm/perm/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-perm/perm/std.h -------------------------------------------------------------------------------- /test/test-shebang/.gitignore: -------------------------------------------------------------------------------- 1 | b.txt 2 | -------------------------------------------------------------------------------- /test/test-shebang/a.txt: -------------------------------------------------------------------------------- 1 | I am a script. 2 | -------------------------------------------------------------------------------- /test/test-shebang/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-shebang/check.py -------------------------------------------------------------------------------- /test/test-shebang/test-shebang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-shebang/test-shebang.cpp -------------------------------------------------------------------------------- /test/test-this-clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-this-clang.sh -------------------------------------------------------------------------------- /test/test-this-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-this-gcc.sh -------------------------------------------------------------------------------- /test/test-this-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-this-mingw.bat -------------------------------------------------------------------------------- /test/test-this-vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/test-this-vc.bat -------------------------------------------------------------------------------- /test/time/.gitignore: -------------------------------------------------------------------------------- 1 | a.txt 2 | -------------------------------------------------------------------------------- /test/time/backup/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/time/backup/hello.cpp -------------------------------------------------------------------------------- /test/time/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/time/hello.cpp -------------------------------------------------------------------------------- /test/time/obsolete/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/time/obsolete/check.py -------------------------------------------------------------------------------- /test/time/run-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/time/run-gcc.sh -------------------------------------------------------------------------------- /test/use-lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/use-lib/.gitignore -------------------------------------------------------------------------------- /test/use-lib/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/use-lib/hello.cpp -------------------------------------------------------------------------------- /test/use-lib/obsolete/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/use-lib/obsolete/check.py -------------------------------------------------------------------------------- /test/use-lib/run-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/use-lib/run-gcc.sh -------------------------------------------------------------------------------- /test/using-a-cpp-many-times/bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/using-a-cpp-many-times/bar.cpp -------------------------------------------------------------------------------- /test/using-a-cpp-many-times/bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/using-a-cpp-many-times/bar.h -------------------------------------------------------------------------------- /test/using-a-cpp-many-times/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/using-a-cpp-many-times/foo.cpp -------------------------------------------------------------------------------- /test/using-a-cpp-many-times/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/using-a-cpp-many-times/foo.h -------------------------------------------------------------------------------- /test/using-a-cpp-many-times/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/using-a-cpp-many-times/main.cpp -------------------------------------------------------------------------------- /test/using-a-cpp-many-times/run-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/using-a-cpp-many-times/run-gcc.sh -------------------------------------------------------------------------------- /test/using-a-cpp-many-times/run-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/using-a-cpp-many-times/run-mingw.bat -------------------------------------------------------------------------------- /test/using-a-cpp-many-times/run-vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/using-a-cpp-many-times/run-vc.bat -------------------------------------------------------------------------------- /test/white space in path/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/white space in path/main.cpp -------------------------------------------------------------------------------- /test/white space in path/run-gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/white space in path/run-gcc.sh -------------------------------------------------------------------------------- /test/white space in path/run-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/white space in path/run-mingw.bat -------------------------------------------------------------------------------- /test/white space in path/run-vc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/test/white space in path/run-vc.bat -------------------------------------------------------------------------------- /vc-config-gen/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /vc-config-gen/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/vc-config-gen/pch.h -------------------------------------------------------------------------------- /vc-config-gen/vc-config-gen.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/vc-config-gen/vc-config-gen.cbp -------------------------------------------------------------------------------- /vc-config-gen/vc-config-gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/vc-config-gen/vc-config-gen.cpp -------------------------------------------------------------------------------- /vc-config-gen/vc-config-gen.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/vc-config-gen/vc-config-gen.depend -------------------------------------------------------------------------------- /vc-config-gen/vc-config-gen.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/vc-config-gen/vc-config-gen.vcxproj -------------------------------------------------------------------------------- /vs-props/boost.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/vs-props/boost.props -------------------------------------------------------------------------------- /vs-props/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/vs-props/readme.md -------------------------------------------------------------------------------- /windows-publish/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.7z 3 | *-prebuilt-bin 4 | -------------------------------------------------------------------------------- /windows-publish/mingw-collect-pre-built-binaries.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/windows-publish/mingw-collect-pre-built-binaries.bat -------------------------------------------------------------------------------- /windows-publish/vc-collect-pre-built-binaries.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duyanning/cpps/HEAD/windows-publish/vc-collect-pre-built-binaries.bat --------------------------------------------------------------------------------