|
Revision 1891, 1.1 kB
(checked in by jnorman, 2 years ago)
|
|
Initial makefiles for csharp wrapper
|
| Line | |
|---|
| 1 | #------------------------------------------------------------------------------ |
|---|
| 2 | # Desc: |
|---|
| 3 | # Tabs: 3 |
|---|
| 4 | # |
|---|
| 5 | # Copyright (c) 2007-2008 Novell, Inc. All Rights Reserved. |
|---|
| 6 | # |
|---|
| 7 | # This program and the accompanying materials are made available |
|---|
| 8 | # under, alternatively, the terms of: a) the Eclipse Public License v1.0 |
|---|
| 9 | # which accompanies this distribution, and is available at |
|---|
| 10 | # http://www.eclipse.org/legal/epl-v10.html; or, b) the Apache License, |
|---|
| 11 | # Version 2.0 which accompanies this distribution and is available at |
|---|
| 12 | # www.opensource.org/licenses/apache2.0.php. |
|---|
| 13 | # |
|---|
| 14 | # To contact Novell about this file by physical or electronic mail, |
|---|
| 15 | # you may find current contact information at www.novell.com. |
|---|
| 16 | # |
|---|
| 17 | # Author: Andrew Hodgkinson <ahodgkinson@novell.com> |
|---|
| 18 | #------------------------------------------------------------------------------ |
|---|
| 19 | |
|---|
| 20 | # Policy |
|---|
| 21 | |
|---|
| 22 | cmake_minimum_required( VERSION 2.4) |
|---|
| 23 | |
|---|
| 24 | # Include the local modules directory |
|---|
| 25 | |
|---|
| 26 | set( CMAKE_MODULE_PATH "${FTK_DIR}/CMakeModules") |
|---|
| 27 | |
|---|
| 28 | # Project |
|---|
| 29 | |
|---|
| 30 | project( digitalme-csharp) |
|---|
| 31 | |
|---|
| 32 | add_custom_target(csharp |
|---|
| 33 | COMMAND gmcs -r:../build/Novell.IdentityModel.Selectors.dll -out:../build/GetToken.exe Program.cs |
|---|
| 34 | VERBATIM |
|---|
| 35 | ) |
|---|