mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-19 14:17:40 +00:00
20 lines
505 B
Makefile
20 lines
505 B
Makefile
#
|
|
# Test that JSONUtils functions have correct behaviour
|
|
#
|
|
# NOTE: The .dproj needs $(CI) added to the Delphi Compiler/Conditional defines (All
|
|
# configurations - all platforms) section in order for the CI flag to be passed in.
|
|
# (It's best to make this change in Delphi IDE).
|
|
#
|
|
|
|
!include ..\..\Defines.mak
|
|
|
|
test: build
|
|
-$(WIN32_TARGET_PATH)\jsonutiltests.exe -b -exit:continue
|
|
|
|
build:
|
|
$(DELPHI_MSBUILD) /p:CI=CI jsonutiltests.dproj
|
|
|
|
clean: def-clean
|
|
-rd /s/q Win32
|
|
|
|
!include ..\..\Target.mak
|