Skip to content

Commit 42d5a55

Browse files
committed
chore: lower cmake requirements to 3.20
1 parent 26a4bc6 commit 42d5a55

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.25)
1+
cmake_minimum_required(VERSION 3.20)
22
project(redasm-processors C)
33

44
if(NOT TARGET redasm::redasm)

capstonebundle/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.25)
1+
cmake_minimum_required(VERSION 3.20)
22

33
project(capstone-bundle C)
44

capstonebundle/capstone.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Capstone* capstone_create(const CapstoneInitData* data, int size) {
55
cs_err err = cs_open(data->arch, data->mode, &h);
66

77
if(err) {
8-
rd_log(RD_LOGLEVEL_FAIL, "%s", cs_strerror(err));
8+
RD_LOG_FAIL("%s", cs_strerror(err));
99
return NULL;
1010
}
1111

capstonebundle/cmake/CPM.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(CPM_DOWNLOAD_VERSION 0.42.1)
1+
set(CPM_DOWNLOAD_VERSION 0.43.1)
22

33
if(CPM_SOURCE_CACHE)
44
set(CPM_DOWNLOAD_LOCATION "${CPM_SOURCE_CACHE}/cpm/CPM_${CPM_DOWNLOAD_VERSION}.cmake")

mips/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.25)
1+
cmake_minimum_required(VERSION 3.20)
22

33
project(mips C)
44

x86/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.25)
1+
cmake_minimum_required(VERSION 3.20)
22

33
project(x86 C)
44

0 commit comments

Comments
 (0)