mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-14 08:33:58 +00:00
21 lines
280 B
Text
21 lines
280 B
Text
|
cmake_minimum_required(VERSION 3.0)
|
||
|
project(lg_common LANGUAGES C)
|
||
|
|
||
|
include_directories(
|
||
|
${PROJECT_SOURCE_DIR}/include
|
||
|
)
|
||
|
|
||
|
add_library(lg_common STATIC
|
||
|
src/debug.c
|
||
|
)
|
||
|
|
||
|
#target_link_libraries(lg_common
|
||
|
#)
|
||
|
|
||
|
target_include_directories(lg_common
|
||
|
INTERFACE
|
||
|
include
|
||
|
PRIVATE
|
||
|
src
|
||
|
)
|