Skip to content

Commit

Permalink
blah
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Oct 10, 2024
1 parent 5b3826f commit d5b44ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Iaito.pro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ IAITO_VERSION_MAJOR = 5
IAITO_VERSION_MINOR = 9
IAITO_VERSION_PATCH = 4

CONFIG += c++17
CONFIG += c++20
CONFIG+=app_bundle
# LIBS+= -dead_strip

Expand Down Expand Up @@ -114,7 +114,7 @@ win32 {
}

macx {
QMAKE_CXXFLAGS += -mmacosx-version-min=10.7 -std=c++17 -stdlib=libc++ -g
QMAKE_CXXFLAGS += -mmacosx-version-min=10.7 -std=c++20 -stdlib=libc++ -g
QMAKE_TARGET_BUNDLE_PREFIX = org.radare
QMAKE_BUNDLE = iaito
QMAKE_INFO_PLIST = macos/Info.plist
Expand Down
4 changes: 2 additions & 2 deletions src/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('iaito', 'cpp',
default_options: 'cpp_std=c++17',
default_options: 'cpp_std=c++20',
meson_version: '>=0.50.0')

# default_options : [
Expand Down Expand Up @@ -73,7 +73,7 @@ if host_machine.system() == 'windows'
'../radare2/include/libr/sdb',
]
add_global_arguments('-D_WINDOWS', language:'cpp')
add_global_arguments('/std:c++17', language:'cpp')
add_global_arguments('/std:c++20', language:'cpp')
r2libdir = [
meson.current_source_dir() + '\\..\\radare2\\lib',
'C:\\radare2\\lib'
Expand Down

0 comments on commit d5b44ba

Please sign in to comment.