mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-28 16:27:12 +00:00
12 lines
221 B
CMake
12 lines
221 B
CMake
|
cmake_minimum_required(VERSION 3.0)
|
||
|
project(capture LANGUAGES C)
|
||
|
|
||
|
include("PreCapture")
|
||
|
|
||
|
add_capture("XCB")
|
||
|
|
||
|
include("PostCapture")
|
||
|
|
||
|
add_library(capture STATIC ${CAPTURE_C})
|
||
|
target_link_libraries(capture ${CAPTURE_LINK})
|