ultimatepp/uppsrc/ide/Common/CommandLineOptions.h
klugier 5359cc0cca Gdb: 64-bit version of TheIDE can break 32-bit debugge process. #1892
git-svn-id: svn://ultimatepp.org/upp/trunk@12111 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2018-07-28 14:38:37 +00:00

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