/*******************************************************************************
* Copyright (c) 2014 Rohde & Schwarz GmbH & Co. KG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Martin Runge - initial implementation of cmake support
*******************************************************************************/
package org.eclipse.cdt.cmake.ui;
public class PreferenceConstants {
public static final String P_PATH = "pathPreference";
public static final String P_BUILDDIR = "builddirPreference";
public static final String P_DESTDIR = "destdirPreference";
public static final String P_PROJPATH = "projectPath";
public static final String P_TOOLCHAIN_FILES = "toolchainFiles";
public static final String P_AVAIL_TARGET_ARCHS = "availTargetArchs";
public static final String P_CURRENT_TARGET_ARCH = "currentTargetArch";
public static final String P_AVAIL_TARGET_DEVICES = "availTargetDevices";
public static final String P_CURRENT_TARGET_DEVICE = "currentTargetDevice";
public static final String P_NOT_INST_SPECIFIC = "notInstSpecific";
public static final String P_CMAKE_TOOLCHAIN_PREFERENCE_SCOPE = "org.eclipse.cdt.cmake.preferences";
public static final String P_CMAKE_EXE = "cmakePathPreference";
public static final String P_CMAKE_VIA_PATH = "cmakeViaPathPreference";
public static final String P_CMAKE_GENERATOR = "CMakeGenerator";
}