mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-12-23 14:21:57 +00:00
11 lines
221 B
CMake
11 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})
|