This repository has been archived on 2024-06-12. You can view files and clone it, but cannot push or open issues or pull requests.
2023-12-20 21:18:00 +00:00
|
|
|
cmake_minimum_required(VERSION 3.18.4)
|
|
|
|
project(mportlink)
|
|
|
|
|
|
|
|
file(GLOB_RECURSE SRC_FILES_LIST src/*.c)
|
|
|
|
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
|
|
|
2023-12-23 23:33:54 +00:00
|
|
|
pkg_search_module(UDEV REQUIRED libudev)
|
2023-12-20 21:18:00 +00:00
|
|
|
|
2023-12-23 21:35:41 +00:00
|
|
|
include_directories(${UDEV_INCLUDE_DIRS})
|
|
|
|
link_directories(${UDEV_LIBRARY_DIRS})
|
|
|
|
add_definitions(${UDEV_CFLAGS_OTHER})
|
2023-12-20 21:18:00 +00:00
|
|
|
|
|
|
|
add_executable(${PROJECT_NAME} ${SRC_FILES_LIST})
|
2023-12-23 21:35:41 +00:00
|
|
|
target_link_libraries(${PROJECT_NAME} ${UDEV_LIBRARIES})
|