1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00

Stage initial linux vdi sample

This commit is contained in:
MikeRayMSFT
2017-03-13 18:18:45 -07:00
parent 0c00180bbd
commit 8a5085d46f
5 changed files with 730 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# A simple Makefile to build the VDI sample code
#
EXECUTABLE=vdipipesample
LD_FLAGS=-luuid -lrt -lpthread -lsqlvdi
LD_LIBRARY_PATH=/opt/mssql/lib
$(EXECUTABLE): vdipipesample.cpp vdi.h vdierror.h
clang++ -o $(EXECUTABLE) -g -std=c++11 vdipipesample.cpp $(LD_FLAGS) -L $(LD_LIBRARY_PATH)
clean:
rm $(EXECUTABLE)