[all] cmake: standardize indentation to 2 spaces

This commit is contained in:
Quantum
2022-05-28 14:45:13 -04:00
committed by Geoffrey McRae
parent 0799910e70
commit a8521b821e
18 changed files with 381 additions and 382 deletions

View File

@@ -2,17 +2,17 @@ cmake_minimum_required(VERSION 3.0)
project(capture_XCB LANGUAGES C)
add_library(capture_XCB STATIC
src/xcb.c
src/xcb.c
)
target_link_libraries(capture_XCB
lg_common
xcb
xcb-shm
xcb-xfixes
lg_common
xcb
xcb-shm
xcb-xfixes
)
target_include_directories(capture_XCB
PRIVATE
src
PRIVATE
src
)