diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-05-13 16:57:37 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-05-13 17:09:48 -0400 |
| commit | 1408212717861485772985940474034078282829 (patch) | |
| tree | 0a090e294d384276d0e5374cde8432ae40cf9602 /examples | |
| parent | 7034620653386995816157558520033738480413 (diff) | |
[CMake] Report compatibility with 3.15 to silence deprecation warnings
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/bin-info/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | examples/breakpoint/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | examples/cmdline_disasm/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | examples/enterprise_test/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | examples/llil_parser/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | examples/mlil_parser/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | examples/print_syscalls/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | examples/triage/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | examples/workflows/inliner/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | examples/workflows/tailcall/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | examples/x86_extension/CMakeLists.txt | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/examples/bin-info/CMakeLists.txt b/examples/bin-info/CMakeLists.txt index 7f6126f2..d06ce288 100644 --- a/examples/bin-info/CMakeLists.txt +++ b/examples/bin-info/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR) project(bin-info CXX C) diff --git a/examples/breakpoint/CMakeLists.txt b/examples/breakpoint/CMakeLists.txt index d6fef7f5..00a35b45 100644 --- a/examples/breakpoint/CMakeLists.txt +++ b/examples/breakpoint/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR) project(breakpoint CXX C) diff --git a/examples/cmdline_disasm/CMakeLists.txt b/examples/cmdline_disasm/CMakeLists.txt index eba0a1c9..b515bce3 100644 --- a/examples/cmdline_disasm/CMakeLists.txt +++ b/examples/cmdline_disasm/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR) project(cmdline_disasm CXX C) diff --git a/examples/enterprise_test/CMakeLists.txt b/examples/enterprise_test/CMakeLists.txt index 9833817c..87221afc 100644 --- a/examples/enterprise_test/CMakeLists.txt +++ b/examples/enterprise_test/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR) project(enterprise_test CXX C) diff --git a/examples/llil_parser/CMakeLists.txt b/examples/llil_parser/CMakeLists.txt index a33893e6..e3f6661c 100644 --- a/examples/llil_parser/CMakeLists.txt +++ b/examples/llil_parser/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR) project(llil_parser CXX C) diff --git a/examples/mlil_parser/CMakeLists.txt b/examples/mlil_parser/CMakeLists.txt index 625adcb0..6b4a235e 100644 --- a/examples/mlil_parser/CMakeLists.txt +++ b/examples/mlil_parser/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR) project(mlil_parser CXX C) diff --git a/examples/print_syscalls/CMakeLists.txt b/examples/print_syscalls/CMakeLists.txt index b3f765da..6135c361 100644 --- a/examples/print_syscalls/CMakeLists.txt +++ b/examples/print_syscalls/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR) project(print_syscalls CXX C) diff --git a/examples/triage/CMakeLists.txt b/examples/triage/CMakeLists.txt index 9c1be84c..a250e09b 100644 --- a/examples/triage/CMakeLists.txt +++ b/examples/triage/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR) project(triage CXX C) diff --git a/examples/workflows/inliner/CMakeLists.txt b/examples/workflows/inliner/CMakeLists.txt index a831a45a..882b443c 100644 --- a/examples/workflows/inliner/CMakeLists.txt +++ b/examples/workflows/inliner/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR) project(workflow_inliner) diff --git a/examples/workflows/tailcall/CMakeLists.txt b/examples/workflows/tailcall/CMakeLists.txt index 37b4d502..60679dd7 100644 --- a/examples/workflows/tailcall/CMakeLists.txt +++ b/examples/workflows/tailcall/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR) project(workflow_tailcall) diff --git a/examples/x86_extension/CMakeLists.txt b/examples/x86_extension/CMakeLists.txt index 863a27b9..9a668f37 100644 --- a/examples/x86_extension/CMakeLists.txt +++ b/examples/x86_extension/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.9...3.15 FATAL_ERROR) project(x86_extension CXX C) |
