blob: cfb15021c0ccb70600de5f86cfefbb9e288c73e4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 Martin Weber.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.cdt.cmake.core.properties;
/**
* General, non-cmake related project settings.
*
* @author Martin Weber
*
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
* @since 1.4
*/
public interface IGeneralProperties {
/**
* Gets the name of the top-level directory relative to the project root.
*/
String getSourceDirectory();
/**
* Sets the name of the top-level directory relative to the project root.
*/
void setSourceDirectory(String sourceDirectory);
/**
* Gets the name of the build directory.
*/
String getBuildDirectory();
/**
* Sets the name of the build directory.
*/
void setBuildDirectory(String buildDirectory);
}