* Remove wrong librz.pc.in file * Add plugindir variable to .pc files to allow easy plugin configuration * Add CMake config files to find Rizin in CMake projects * Add CI jobs to check cmake files * Provide workaround for mesonbuild/meson#9702 * Use .lib suffix and no prefix on MSVC to make CMake files work * Disable cmake files on static libraries build
6 lines
220 B
CMake
6 lines
220 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(RizinCMakeTest VERSION 1.0.0)
|
|
|
|
find_package(Rizin COMPONENTS Core)
|
|
add_executable(rizin_cmake_test rz_core_test.c)
|
|
target_link_libraries(rizin_cmake_test PRIVATE Rizin::Core)
|