Skip to content
o-jill edited this page Sep 10, 2015 · 4 revisions

Welcome to the kouets wiki!

project file formats

  • ver. 0.1
# kouets project file
#
kouetsapp.cpp
kouetsapp.h
main.cpp
mainwindow.cpp
mainwindow.h
projectfile.cpp
projectfile.h
decorate.cpp
decorate.h
  • [not decided yet] ver. 0.9999999999
<?XML version="1.0" ?>
<kouets version="1.0">
 <config>
  <activatetab> FALSE </activatetab>
  <apppath> C:/path/to/default.exe </apppath>
  <cmdline> --some --default --command --option </cmdline>
  <parser> cpplint.py_VS7 </parser>
  <color1> #FF0000 </color1>
 </config>
 <item>
  <file>kouetsapp.cpp</file>
  <!-- default program(apppath) and cmdline  will be used -->
 </item>
 <item>
  <file> kouetsapp.h </file>
  <apppath> C:/speci/alpat/htoan/application.exe </program>
  <cmdline> --some --command --option </cmdline>
  <parser> cpplint.py_VS7 </parser>
 </item>
</kouets>
  • [not decided yet] ver. 0.99999989999
{
 "kouets": {
  "config": {
   "activetab": "FALSE",
   "apppath": "C:/path/to/default.exe",
   "cmdline": "--some --default --command --option",
   "parser": "cpplint.py_VS7"
  },
  "item": {
   "file":"kouetsapp.cpp"
  },
  "item": {
   "file":"kouetsapp.h",
   "apppath":"C:/speci/alpat/htoan/application.exe",
   "cmdline":"--some --command --option",
   "parser":"cpplint.py_VS7"
  }
 }
}
Clone this wiki locally