mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-11 06:43:56 +00:00
26 lines
448 B
Text
26 lines
448 B
Text
|
cmake_minimum_required(VERSION 3.0)
|
||
|
project(porthole LANGUAGES C)
|
||
|
|
||
|
include_directories(
|
||
|
${PROJECT_SOURCE_DIR}/include
|
||
|
)
|
||
|
|
||
|
add_library(porthole STATIC
|
||
|
src/porthole.c
|
||
|
)
|
||
|
|
||
|
if(WIN32)
|
||
|
add_subdirectory(src/windows)
|
||
|
target_link_libraries(porthole PRIVATE porthole-windows)
|
||
|
else()
|
||
|
add_subdirectory(src/linux)
|
||
|
target_link_libraries(porthole PRIVATE porthole-linux)
|
||
|
endif()
|
||
|
|
||
|
target_include_directories(porthole
|
||
|
INTERFACE
|
||
|
include
|
||
|
PRIVATE
|
||
|
src
|
||
|
)
|