Commit c6cbf25d authored by Dan Gordon's avatar Dan Gordon
Browse files

Fix mac deprecation error in GUI server.

parent 878f7d42
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
10.2.6
10.2.7
+8 −1
Original line number Diff line number Diff line
@@ -11,7 +11,14 @@ project(

pkg = import('pkgconfig')
fs = import('fs')
cxx = meson.get_compiler('cpp')

cpp = meson.get_compiler('cpp')

if cpp.get_id() == 'clang'
    add_project_arguments(
        '-U_LIBCPP_ENABLE_ASSERTIONS', '-D_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_EXTENSIVE', language: 'cpp'
    )
endif

dep_sgt_core = dependency('SgtCore')

+1 −1
Original line number Diff line number Diff line
project(
  'SmartGridToolbox',
  'cpp',
version : '10.2.6',
version : '10.2.7',
  license : 'Apache License 2.0',
  default_options : ['cpp_std=c++17', 'buildtype=debugoptimized', 'default_library=shared']
)
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ import subprocess

from Cython.Build import cythonize

VERSION = '10.2.6'
VERSION = '10.2.7'

# ------------------------------------------------------------------------------
# Find C++ compile options.