mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 03:16:10 +00:00
cmake: Use pkg-config for non-windows
This commit is contained in:
parent
4fea009a97
commit
fd80443b7e
@ -26,18 +26,27 @@ if(WIN32)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(RADARE2_INCLUDE_DIRS "${IAITO_WIN32_DIR}/radare2/include/libr" "${IAITO_WIN32_DIR}/include")
|
set(RADARE2_INCLUDE_DIRS "${IAITO_WIN32_DIR}/radare2/include/libr" "${IAITO_WIN32_DIR}/include")
|
||||||
|
|
||||||
|
find_package(Radare2 REQUIRED)
|
||||||
|
else()
|
||||||
|
# support sys/user.sh install
|
||||||
|
list(APPEND CMAKE_PREFIX_PATH "$ENV{HOME}/bin/prefix/radare2")
|
||||||
|
|
||||||
|
find_package(PkgConfig REQUIRED)
|
||||||
|
pkg_search_module(RADARE2 REQUIRED r_core)
|
||||||
|
|
||||||
|
link_directories(${RADARE2_LIBRARY_DIRS})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
include_directories(${RADARE2_INCLUDE_DIRS})
|
||||||
|
|
||||||
|
|
||||||
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU"
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU"
|
||||||
OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
||||||
add_definitions(-Wall)
|
add_definitions(-Wall)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
find_package(Radare2 REQUIRED)
|
|
||||||
include_directories(${RADARE2_INCLUDE_DIRS})
|
|
||||||
|
|
||||||
|
|
||||||
# Parse iaito.pro to get filenames
|
# Parse iaito.pro to get filenames
|
||||||
include(QMakeProParse)
|
include(QMakeProParse)
|
||||||
parse_qmake_pro("${CMAKE_CURRENT_SOURCE_DIR}/iaito.pro" IAITO_PRO)
|
parse_qmake_pro("${CMAKE_CURRENT_SOURCE_DIR}/iaito.pro" IAITO_PRO)
|
||||||
@ -61,3 +70,4 @@ add_definitions("-DAPP_VERSION=\"${IAITO_VERSION_FULL}\"")
|
|||||||
add_executable(iaito ${UI_FILES} ${QRC_FILES} ${SOURCE_FILES} ${HEADER_FILES})
|
add_executable(iaito ${UI_FILES} ${QRC_FILES} ${SOURCE_FILES} ${HEADER_FILES})
|
||||||
qt5_use_modules(iaito Core Widgets Gui WebEngine WebEngineWidgets)
|
qt5_use_modules(iaito Core Widgets Gui WebEngine WebEngineWidgets)
|
||||||
target_link_libraries(iaito ${RADARE2_LIBRARIES})
|
target_link_libraries(iaito ${RADARE2_LIBRARIES})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user