No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

launcher.properties 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Launchers File syntax:
  2. #
  3. # [Must-have property line]
  4. # launcher1.runCommand=<Run Command>
  5. # [Optional extra properties]
  6. # launcher1.displayName=<Display Name, runCommand by default>
  7. # launcher1.hide=<true if lancher is not visible in menu, false by default>
  8. # launcher1.buildCommand=<Build Command, Build Command specified in project properties by default>
  9. # launcher1.runDir=<Run Directory, ${PROJECT_DIR} by default>
  10. # launcher1.runInOwnTab=<false if launcher reuse common "Run" output tab, true by default>
  11. # launcher1.symbolFiles=<Symbol Files loaded by debugger, ${OUTPUT_PATH} by default>
  12. # launcher1.env.<Environment variable KEY>=<Environment variable VALUE>
  13. # (If this value is quoted with ` it is handled as a native command which execution result will become the value)
  14. # [Common launcher properties]
  15. # common.runDir=<Run Directory>
  16. # (This value is overwritten by a launcher specific runDir value if the latter exists)
  17. # common.env.<Environment variable KEY>=<Environment variable VALUE>
  18. # (Environment variables from common launcher are merged with launcher specific variables)
  19. # common.symbolFiles=<Symbol Files loaded by debugger>
  20. # (This value is overwritten by a launcher specific symbolFiles value if the latter exists)
  21. #
  22. # In runDir, symbolFiles and env fields you can use these macroses:
  23. # ${PROJECT_DIR} - project directory absolute path
  24. # ${OUTPUT_PATH} - linker output path (relative to project directory path)
  25. # ${OUTPUT_BASENAME}- linker output filename
  26. # ${TESTDIR} - test files directory (relative to project directory path)
  27. # ${OBJECTDIR} - object files directory (relative to project directory path)
  28. # ${CND_DISTDIR} - distribution directory (relative to project directory path)
  29. # ${CND_BUILDDIR} - build directory (relative to project directory path)
  30. # ${CND_PLATFORM} - platform name
  31. # ${CND_CONF} - configuration name
  32. # ${CND_DLIB_EXT} - dynamic library extension
  33. #
  34. # All the project launchers must be listed in the file!
  35. #
  36. # launcher1.runCommand=...
  37. # launcher2.runCommand=...
  38. # ...
  39. # common.runDir=...
  40. # common.env.KEY=VALUE
  41. # launcher1.runCommand=<type your run command here>