├── .gitignore ├── README.md ├── Resources_Win.rc ├── TinderBox.pro ├── TinderBox.qrc ├── icons ├── TinderBox.icns ├── TinderBox.png ├── edit_add.png ├── edit_remove.png ├── folder.png ├── tinderbox_app_icon.ico ├── vc2015.png ├── vc2015_selected.png ├── vc_winrt.png ├── vc_winrt_selected.png ├── xcode.png ├── xcode_ios.png ├── xcode_ios_selected.png └── xcode_selected.png ├── resources ├── GenericCinderBlock.png ├── YanoneKaffeesatz-Light.ttf ├── YanoneKaffeesatz-Regular.ttf ├── background.png ├── error.png └── warning.png ├── src ├── CinderBlock.cpp ├── CinderBlock.h ├── CinderBlockManager.cpp ├── CinderBlockManager.h ├── ErrorList.cpp ├── ErrorList.h ├── FirstTimeDlg.cpp ├── FirstTimeDlg.h ├── GeneratorBase.h ├── GeneratorVc2015.cpp ├── GeneratorVc2015.h ├── GeneratorVc2015Winrt.cpp ├── GeneratorVc2015Winrt.h ├── GeneratorVcBase.cpp ├── GeneratorVcBase.h ├── GeneratorXcodeBase.cpp ├── GeneratorXcodeBase.h ├── GeneratorXcodeIos.cpp ├── GeneratorXcodeIos.h ├── GeneratorXcodeMac.cpp ├── GeneratorXcodeMac.h ├── Instancer.cpp ├── Instancer.h ├── MainWizard.cpp ├── MainWizard.h ├── Preferences.cpp ├── Preferences.h ├── ProjectTemplate.cpp ├── ProjectTemplate.h ├── ProjectTemplateManager.cpp ├── ProjectTemplateManager.h ├── Template.cpp ├── Template.h ├── TinderBox.h ├── Util.cpp ├── Util.h ├── WizardPageCinderBlocks.cpp ├── WizardPageCinderBlocks.h ├── WizardPageEnvOptions.cpp ├── WizardPageEnvOptions.h ├── WizardPageMain.cpp ├── WizardPageMain.h ├── main.cpp ├── parse │ ├── PList.cpp │ ├── PList.h │ ├── Vc2015Proj.cpp │ ├── Vc2015Proj.h │ ├── Vc2015WinRtProj.cpp │ ├── Vc2015WinRtProj.h │ ├── VcProj.cpp │ ├── VcProj.h │ ├── XCodeProj.cpp │ └── XCodeProj.h └── pugixml │ ├── pugiconfig.hpp │ ├── pugixml.cpp │ └── pugixml.hpp └── ui ├── ErrorListDialog.ui ├── FirstTimeDlg.ui ├── PrefsDlg.ui ├── WizardPageCinderBlocks.ui ├── WizardPageEnvOptions.ui └── WizardPageMain.ui /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pro.user 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/README.md -------------------------------------------------------------------------------- /Resources_Win.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/Resources_Win.rc -------------------------------------------------------------------------------- /TinderBox.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/TinderBox.pro -------------------------------------------------------------------------------- /TinderBox.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/TinderBox.qrc -------------------------------------------------------------------------------- /icons/TinderBox.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/TinderBox.icns -------------------------------------------------------------------------------- /icons/TinderBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/TinderBox.png -------------------------------------------------------------------------------- /icons/edit_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/edit_add.png -------------------------------------------------------------------------------- /icons/edit_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/edit_remove.png -------------------------------------------------------------------------------- /icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/folder.png -------------------------------------------------------------------------------- /icons/tinderbox_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/tinderbox_app_icon.ico -------------------------------------------------------------------------------- /icons/vc2015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/vc2015.png -------------------------------------------------------------------------------- /icons/vc2015_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/vc2015_selected.png -------------------------------------------------------------------------------- /icons/vc_winrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/vc_winrt.png -------------------------------------------------------------------------------- /icons/vc_winrt_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/vc_winrt_selected.png -------------------------------------------------------------------------------- /icons/xcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/xcode.png -------------------------------------------------------------------------------- /icons/xcode_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/xcode_ios.png -------------------------------------------------------------------------------- /icons/xcode_ios_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/xcode_ios_selected.png -------------------------------------------------------------------------------- /icons/xcode_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/icons/xcode_selected.png -------------------------------------------------------------------------------- /resources/GenericCinderBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/resources/GenericCinderBlock.png -------------------------------------------------------------------------------- /resources/YanoneKaffeesatz-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/resources/YanoneKaffeesatz-Light.ttf -------------------------------------------------------------------------------- /resources/YanoneKaffeesatz-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/resources/YanoneKaffeesatz-Regular.ttf -------------------------------------------------------------------------------- /resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/resources/background.png -------------------------------------------------------------------------------- /resources/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/resources/error.png -------------------------------------------------------------------------------- /resources/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/resources/warning.png -------------------------------------------------------------------------------- /src/CinderBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/CinderBlock.cpp -------------------------------------------------------------------------------- /src/CinderBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/CinderBlock.h -------------------------------------------------------------------------------- /src/CinderBlockManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/CinderBlockManager.cpp -------------------------------------------------------------------------------- /src/CinderBlockManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/CinderBlockManager.h -------------------------------------------------------------------------------- /src/ErrorList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/ErrorList.cpp -------------------------------------------------------------------------------- /src/ErrorList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/ErrorList.h -------------------------------------------------------------------------------- /src/FirstTimeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/FirstTimeDlg.cpp -------------------------------------------------------------------------------- /src/FirstTimeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/FirstTimeDlg.h -------------------------------------------------------------------------------- /src/GeneratorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorBase.h -------------------------------------------------------------------------------- /src/GeneratorVc2015.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorVc2015.cpp -------------------------------------------------------------------------------- /src/GeneratorVc2015.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorVc2015.h -------------------------------------------------------------------------------- /src/GeneratorVc2015Winrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorVc2015Winrt.cpp -------------------------------------------------------------------------------- /src/GeneratorVc2015Winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorVc2015Winrt.h -------------------------------------------------------------------------------- /src/GeneratorVcBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorVcBase.cpp -------------------------------------------------------------------------------- /src/GeneratorVcBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorVcBase.h -------------------------------------------------------------------------------- /src/GeneratorXcodeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorXcodeBase.cpp -------------------------------------------------------------------------------- /src/GeneratorXcodeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorXcodeBase.h -------------------------------------------------------------------------------- /src/GeneratorXcodeIos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorXcodeIos.cpp -------------------------------------------------------------------------------- /src/GeneratorXcodeIos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorXcodeIos.h -------------------------------------------------------------------------------- /src/GeneratorXcodeMac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorXcodeMac.cpp -------------------------------------------------------------------------------- /src/GeneratorXcodeMac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/GeneratorXcodeMac.h -------------------------------------------------------------------------------- /src/Instancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/Instancer.cpp -------------------------------------------------------------------------------- /src/Instancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/Instancer.h -------------------------------------------------------------------------------- /src/MainWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/MainWizard.cpp -------------------------------------------------------------------------------- /src/MainWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/MainWizard.h -------------------------------------------------------------------------------- /src/Preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/Preferences.cpp -------------------------------------------------------------------------------- /src/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/Preferences.h -------------------------------------------------------------------------------- /src/ProjectTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/ProjectTemplate.cpp -------------------------------------------------------------------------------- /src/ProjectTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/ProjectTemplate.h -------------------------------------------------------------------------------- /src/ProjectTemplateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/ProjectTemplateManager.cpp -------------------------------------------------------------------------------- /src/ProjectTemplateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/ProjectTemplateManager.h -------------------------------------------------------------------------------- /src/Template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/Template.cpp -------------------------------------------------------------------------------- /src/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/Template.h -------------------------------------------------------------------------------- /src/TinderBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/TinderBox.h -------------------------------------------------------------------------------- /src/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/Util.cpp -------------------------------------------------------------------------------- /src/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/Util.h -------------------------------------------------------------------------------- /src/WizardPageCinderBlocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/WizardPageCinderBlocks.cpp -------------------------------------------------------------------------------- /src/WizardPageCinderBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/WizardPageCinderBlocks.h -------------------------------------------------------------------------------- /src/WizardPageEnvOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/WizardPageEnvOptions.cpp -------------------------------------------------------------------------------- /src/WizardPageEnvOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/WizardPageEnvOptions.h -------------------------------------------------------------------------------- /src/WizardPageMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/WizardPageMain.cpp -------------------------------------------------------------------------------- /src/WizardPageMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/WizardPageMain.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/parse/PList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/parse/PList.cpp -------------------------------------------------------------------------------- /src/parse/PList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/parse/PList.h -------------------------------------------------------------------------------- /src/parse/Vc2015Proj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/parse/Vc2015Proj.cpp -------------------------------------------------------------------------------- /src/parse/Vc2015Proj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/parse/Vc2015Proj.h -------------------------------------------------------------------------------- /src/parse/Vc2015WinRtProj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/parse/Vc2015WinRtProj.cpp -------------------------------------------------------------------------------- /src/parse/Vc2015WinRtProj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/parse/Vc2015WinRtProj.h -------------------------------------------------------------------------------- /src/parse/VcProj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/parse/VcProj.cpp -------------------------------------------------------------------------------- /src/parse/VcProj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/parse/VcProj.h -------------------------------------------------------------------------------- /src/parse/XCodeProj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/parse/XCodeProj.cpp -------------------------------------------------------------------------------- /src/parse/XCodeProj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/parse/XCodeProj.h -------------------------------------------------------------------------------- /src/pugixml/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/pugixml/pugiconfig.hpp -------------------------------------------------------------------------------- /src/pugixml/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/pugixml/pugixml.cpp -------------------------------------------------------------------------------- /src/pugixml/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/src/pugixml/pugixml.hpp -------------------------------------------------------------------------------- /ui/ErrorListDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/ui/ErrorListDialog.ui -------------------------------------------------------------------------------- /ui/FirstTimeDlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/ui/FirstTimeDlg.ui -------------------------------------------------------------------------------- /ui/PrefsDlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/ui/PrefsDlg.ui -------------------------------------------------------------------------------- /ui/WizardPageCinderBlocks.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/ui/WizardPageCinderBlocks.ui -------------------------------------------------------------------------------- /ui/WizardPageEnvOptions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/ui/WizardPageEnvOptions.ui -------------------------------------------------------------------------------- /ui/WizardPageMain.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cinder/TinderBox/HEAD/ui/WizardPageMain.ui --------------------------------------------------------------------------------