From b95eb67b8f4ca6044756ee3e2af2a8dcf8e20848 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Fri, 9 Jul 2021 14:38:35 +0200 Subject: [PATCH] fix #83 - add support for the syntax dub build type --- CHANGELOG.md | 6 ++++++ src/u_dubproject.pas | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be6751a8..62ae4925 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v3.9.12-dev + +## Enhancement + +- DUB projects: added support for the _syntax_ build type. (#83) + # v3.9.11 ## Regressions fixed diff --git a/src/u_dubproject.pas b/src/u_dubproject.pas index 7fce6218..bc7d8b51 100644 --- a/src/u_dubproject.pas +++ b/src/u_dubproject.pas @@ -205,7 +205,7 @@ type // these 9 built types always exist TDubBuildType = (plain, debug, release, releaseDebug, releaseNoBounds, unittest, - docs, ddox, profile, cov, unittestcov); + docs, ddox, profile, cov, unittestcov, syntax); // returns true if filename is a valid dub project. Only json format is supported. function isValidDubProject(const filename: string): boolean; @@ -234,7 +234,7 @@ const DubBuiltTypeName: array[TDubBuildType] of string = ('plain', 'debug', 'release', 'release-debug', 'release-nobounds', 'unittest', 'docs', 'ddox', 'profile', - 'cov', 'unittest-cov' + 'cov', 'unittest-cov', 'syntax' ); DubDefaultConfigName = '(default config)';