14 lines
376 B
CMake
14 lines
376 B
CMake
cmake_minimum_required(VERSION 3.28)
|
|
|
|
# Preinit process that prepares the os and uh yeah :astolfothumbsup:
|
|
lw_project(lsmss
|
|
DESCRIPTION "Linux Session Manager Subsystem"
|
|
TARGET LINDOWS
|
|
)
|
|
|
|
lw_add_executable(lsmss
|
|
SOURCES main.cxx
|
|
)
|
|
target_link_options(lsmss PRIVATE "-static")
|
|
target_include_directories(lsmss PRIVATE $<TARGET_PROPERTY:lrssclient,INCLUDE_DIRECTORIES>)
|