Use BACNET_ENGINEERING_UNITS for basic object API for units properties (#1104)
Co-authored-by: Ed <edward@connect-ex.com> Co-authored-by: Steve Karg <skarg@users.sourceforge.net>
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
<PreprocessorDefinitions>BACNET_STACK_STATIC_DEFINE;_UNICODE;UNICODE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
|
||||
<EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>
|
||||
<WarningLevel>Level4</WarningLevel>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup />
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
@echo off
|
||||
|
||||
rem Run clang-format over the source tree to conform to project requirements
|
||||
|
||||
rem Open a Tools->Command Line->Developer Command Prompt from within Visual studio
|
||||
rem run clang-format-win.bat
|
||||
|
||||
echo running clang-format
|
||||
|
||||
cd ..\..\..
|
||||
|
||||
for /R %%f in (*.c) do clang-format --style=file -i "%%f"
|
||||
for /R %%f in (*.h) do clang-format --style=file -i "%%f"
|
||||
|
||||
cd "ports\win32\microsoft visual studio"
|
||||
Reference in New Issue
Block a user