Descriptionallows developers to use these exact same build commands on Mac and Linux:
# # Clean everything
# make clean
#
# # Build and run tests (in Debug mode)
# make tests
# out/Debug/tests
#
# # Build and run tests (in Release mode)
# make tests BUILDTYPE=Release
# out/Release/tests
#
# # Build bench and SampleApp (both in Release mode), and then run them
# make SampleApp bench BUILDTYPE=Release
# out/Release/bench -repeat 2
# out/Release/SampleApp
#
# # Build all targets (in Debug mode)
# make
Patch Set 1 #MessagesTotal messages: 3
|