mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
15 lines
376 B
C++
15 lines
376 B
C++
#ifndef _ide_Common_CommandLineDefs_h_
|
|
#define _ide_Common_CommandLineDefs_h_
|
|
|
|
#include <Core/Core.h>
|
|
|
|
namespace Upp {
|
|
|
|
const String COMMAND_LINE_SCALE_OPTION = "--scale";
|
|
const String COMMAND_LINE_GDB_DEBUG_BREAK_PROCESS_OPTION = "--gdb_debug_break_process";
|
|
|
|
const int COMMAND_LINE_GDB_DEBUG_BREAK_PROCESS_FAILURE_STATUS = -1;
|
|
|
|
}
|
|
|
|
#endif
|