File: FindCapstone.cmake

package info (click to toggle)
edb-debugger 1.3.0-2.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,124 kB
  • sloc: cpp: 46,241; xml: 4,998; ansic: 3,088; sh: 52; asm: 33; makefile: 5
file content (29 lines) | stat: -rw-r--r-- 998 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
if (UNIX)
	find_package(PkgConfig REQUIRED)
	pkg_check_modules(CAPSTONE REQUIRED capstone>=3.0.4)
elseif (WIN32)
	# CAPSTONE_SDK should be the path to a directory containing a subdirectory "include/capstone"
	# with all the include headers of capstone and another subdirectory "lib" with "capstone_dll.lib" or "libcapstone.dll".
	if (NOT DEFINED CAPSTONE_SDK)
		set(CAPSTONE_SDK NOTFOUND CACHE PATH "Path to the Capstone SDK")
		message(SEND_ERROR "Path to Capstone SDK is missing. Please specify CAPSTONE_SDK.")
	endif()

	find_path(CAPSTONE_INCLUDE_DIRS
		capstone/capstone.h
		PATHS ${CAPSTONE_SDK}/include
	)

    if (NOT CAPSTONE_INCLUDE_DIRS)
		message(SEND_ERROR "Include directory for Capstone not found. Please specify CAPSTONE_SDK.")
	endif()

	find_library(CAPSTONE_LIBRARIES
		NAMES capstone_dll libcapstone
		HINTS "${CAPSTONE_SDK}/lib"
	)

    if (NOT CAPSTONE_LIBRARIES)
		message(SEND_ERROR "Library directory for Capstone not found. Please specify CAPSTONE_SDK.")
	endif()
endif()