File: makefile.vc

package info (click to toggle)
liblas 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,888 kB
  • ctags: 4,614
  • sloc: cpp: 31,630; xml: 4,195; python: 2,928; ansic: 2,439; cs: 2,411; sh: 143; makefile: 37
file content (27 lines) | stat: -rwxr-xr-x 618 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# $Id$
#
# A proxy makefile on MSBuild command to build .NET bindings using NMAKE.
# Defines three targets: build, rebuild and clean.
#
# TODO: Define install and package targets
#
!INCLUDE ..\nmake.opt

BUILDACTION="Build"
BUILDPLATFORM="Any CPU"

!IF "$(BUILD_DEBUG)" == "YES"
BUILDCONFIG=Debug
!ELSE
BUILDCONFIG=Release
!ENDIF

default: build

rebuild: clean build

build:
    msbuild dotnetLibLAS.sln /t:$(BUILDACTION) /p:Configuration=$(BUILDCONFIG) /p:Platform=$(BUILDPLATFORM)

clean:
    msbuild dotnetLibLAS.sln /t:Clean /p:Configuration=$(BUILDCONFIG) /p:Platform=$(BUILDPLATFORM)