mirror of
https://gitlab.com/interception/linux/plugins/caps2esc.git
synced 2025-04-04 22:09:24 +00:00
9 lines
198 B
CMake
9 lines
198 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
|
|
project(caps2esc)
|
|
|
|
add_executable(caps2esc caps2esc.c)
|
|
target_compile_options(caps2esc PRIVATE -Wall -Wextra)
|
|
|
|
install(TARGETS caps2esc RUNTIME DESTINATION bin)
|