mirror of
https://github.com/shadps4-emu/ext-wepoll.git
synced 2026-01-31 00:55:18 +01:00
9 lines
190 B
CMake
9 lines
190 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
project(wepoll LANGUAGES C)
|
|
|
|
add_library(wepoll STATIC
|
|
wepoll.c
|
|
wepoll.h
|
|
)
|
|
|
|
target_include_directories(wepoll PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) |