mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 18:18:24 +00:00
12 lines
286 B
CMake
12 lines
286 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(lg_common_platform LANGUAGES C)
|
|
|
|
if (UNIX)
|
|
add_subdirectory("linux")
|
|
elseif(WIN32)
|
|
add_subdirectory("windows")
|
|
endif()
|
|
|
|
add_library(lg_common_platform INTERFACE)
|
|
target_link_libraries(lg_common_platform INTERFACE lg_common_platform_code)
|