summaryrefslogtreecommitdiff
path: root/view/kernelcache/api/python
diff options
context:
space:
mode:
authorAlexander Taylor <alex@vector35.com>2025-05-27 13:34:11 -0400
committerAlexander Taylor <alex@vector35.com>2025-06-25 18:36:48 -0400
commit0342220203fd3adb2a1859230223311252ab24e3 (patch)
tree90cd96454518159b8ffc5699f9bcae7df923577c /view/kernelcache/api/python
parentc41f264a1dba68c89b4a224a70e3a5783f7fa879 (diff)
Update CXX_STANDARD to 20.
Also update minimum CMake version.
Diffstat (limited to 'view/kernelcache/api/python')
-rw-r--r--view/kernelcache/api/python/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/view/kernelcache/api/python/CMakeLists.txt b/view/kernelcache/api/python/CMakeLists.txt
index 07e96298..8829fb97 100644
--- a/view/kernelcache/api/python/CMakeLists.txt
+++ b/view/kernelcache/api/python/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR)
+cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
project(kernelcache-python-api)
@@ -12,7 +12,7 @@ target_link_libraries(kernelcache_generator binaryninjaapi)
target_include_directories(kernelcache_generator PUBLIC {PROJECT_SOURCE_DIR}/../../api)
set_target_properties(kernelcache_generator PROPERTIES
- CXX_STANDARD 17
+ CXX_STANDARD 20
CXX_STANDARD_REQUIRED ON
BUILD_WITH_INSTALL_RPATH OFF
RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR})