Add a CMakeLists.txt to allow FetchContent (#19)

This commit is contained in:
Duncan Ogilvie
2022-08-26 04:15:27 +02:00
committed by GitHub
parent 0fc01f192a
commit ae6c094501
+9
View File
@@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.5)
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)