Show More
Commit Description:
Tidy code.
Commit Description:
Tidy code.
File last commit:
Show/Diff file:
Action:
Makefile
48 lines | 1.3 KiB | text/x-makefile | MakefileLexer
Add Makefile.
r105
CORE_SOLUTION = ./isometric-park-fna-core.sln
FRAMEWORK_SOLUTION = ./isometric-park-fna.sln
core-debug:
dotnet build ${CORE_SOLUTION} -f netcoreapp3.1
Add to Makefile.
r136 core-release:
dotnet build ${CORE_SOLUTION} -f netcoreapp3.1 -c Release
Add Makefile.
r105
framework-release:
msbuild -restore:True ${FRAMEWORK_SOLUTION} -p:Configuration=Release
clean-obj:
rm -r isometric-park-fna/obj/
framework-debug: clean-obj
msbuild -restore:True ${FRAMEWORK_SOLUTION} -p:Configuration=Debug
Add to Makefile.
r136
Add story.
r139 run-core-debug:
Remove my path from Makefile.
r184 cd isometric-park-fna/bin/Debug/netcoreapp3.1; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../../fnalibs/osx" dotnet ./isometric-park-fna.dll
Add to Makefile.
r136
Add story.
r139 run-core-release:
Remove my path from Makefile.
r184 cd isometric-park-fna/bin/Release/netcoreapp3.1; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../../fnalibs/osx" dotnet ./isometric-park-fna.dll
Add to Makefile.
r136
Some tweaks to ensure it builds on framework.
r272
run-framework-release:
cd isometric-park-fna/bin/Release/; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../fnalibs/osx" mono isometric-park-fna.exe
Add story.
r139 # lint:
# yamllint -d relaxed isometric-park-fna/Content/news_items.yaml
Add Makefile.
r105 #CONVENIENCE
# Just using framework for releases since I know it works for now:
release: framework-release
run: framework-debug
Remove my path from Makefile.
r184 cd isometric-park-fna/bin/Debug/; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../fnalibs/osx" mono isometric-park-fna.exe
Add Makefile.
r105