source: rtems-eclipse-plug-in/org.rtems.cdt/src/org/rtems/cdt/build/CygwinEnvironmentSupplier.java @ 6740c53

Last change on this file since 6740c53 was 6740c53, checked in by Sebastian Huber <sebastian.huber@…>, on 12/04/08 at 14:53:45

Initial commit.

  • Property mode set to 100644
File size: 822 bytes
Line 
1/*
2 * Copyright (c) 2008 Embedded Brains GmbH and others.
3 *
4 *   Embedded Brains GmbH
5 *   Obere Lagerstr. 30
6 *   D-82178 Puchheim
7 *   Germany
8 *   rtems@embedded-brains.de
9 *
10 * All rights reserved.  This program and the accompanying materials are made
11 * available under the terms of the Eclipse Public License Version 1.0 ("EPL")
12 * which accompanies this distribution and is available at
13 *
14 *   http://www.eclipse.org/legal/epl-v10.html
15 *
16 * For purposes of the EPL, "Program" will mean the Content.
17 *
18 * Contributors:
19 *
20 *   Sebastian Huber (Embedded Brains GmbH) - Initial API and implementation.
21 */
22
23package org.rtems.cdt.build;
24
25import org.rtems.cdt.Constants;
26
27public class CygwinEnvironmentSupplier extends EnvironmentSupplier {
28        protected String getPlatform() {
29                return Constants.PLATFORM_CYGWIN;
30        }
31}
Note: See TracBrowser for help on using the repository browser.