mirror of
https://github.com/processhacker/phnt
synced 2026-06-08 16:49:04 +00:00
9 lines
237 B
CMake
9 lines
237 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(phnt)
|
|
|
|
add_library(phnt INTERFACE)
|
|
target_include_directories(phnt INTERFACE "${CMAKE_CURRENT_LIST_DIR}")
|
|
target_link_libraries(phnt INTERFACE "ntdll.lib")
|
|
|
|
add_library(phnt::phnt ALIAS phnt) |