Description:
Add to Makefile.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r136:afac0087e499 -

@@ -7,6 +7,8
7 core-debug:
7 core-debug:
8 dotnet build ${CORE_SOLUTION} -f netcoreapp3.1
8 dotnet build ${CORE_SOLUTION} -f netcoreapp3.1
9
9
10 core-release:
11 dotnet build ${CORE_SOLUTION} -f netcoreapp3.1 -c Release
10
12
11 framework-release:
13 framework-release:
12 msbuild -restore:True ${FRAMEWORK_SOLUTION} -p:Configuration=Release
14 msbuild -restore:True ${FRAMEWORK_SOLUTION} -p:Configuration=Release
@@ -18,6 +20,13
18 framework-debug: clean-obj
20 framework-debug: clean-obj
19 msbuild -restore:True ${FRAMEWORK_SOLUTION} -p:Configuration=Debug
21 msbuild -restore:True ${FRAMEWORK_SOLUTION} -p:Configuration=Debug
20
22
23
24 run-core-debug:
25 cd isometric-park-fna/bin/Debug/netcoreapp3.1; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="/Users/alys/repos/isometric-park-fna/fnalibs/osx" dotnet ./isometric-park-fna.dll
26
27 run-core-release:
28 cd isometric-park-fna/bin/Release/netcoreapp3.1; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="/Users/alys/repos/isometric-park-fna/fnalibs/osx" dotnet ./isometric-park-fna.dll
29
21 #CONVENIENCE
30 #CONVENIENCE
22
31
23 # Just using framework for releases since I know it works for now:
32 # Just using framework for releases since I know it works for now:
You need to be logged in to leave comments. Login now