rizin/.github/cmake_test/CMakeLists.txt
Riccardo Schirone 47e1cb8335
Provide CMake config files for CMake projects (#2057)
* 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
2021-12-17 09:16:25 +00:00

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)