Files
RedBear-OS/local/recipes/qt/qtbase/source/cmake/QtGenerateVersionScript.cmake
T
vasilito 04b7641e85 config: add x11proto dependency for libxau and SDDM
- Add x11proto to redbear-full.toml package list
- libxau recipe updated with x11proto dependency and custom build script
- Fixes libxau build failure: 'Package xproto was not found'
2026-06-20 14:57:46 +03:00

16 lines
381 B
CMake

cmake_minimum_required(VERSION 3.16)
if(EXISTS "${PRIVATE_CONTENT_FILE}")
file(READ "${PRIVATE_CONTENT_FILE}" PRIVATE_CONTENT)
endif()
if(NOT EXISTS "${IN_FILE}")
message(FATAL_ERROR "Input file ${IN_FILE} doesn't exists")
endif()
if(OUT_FILE STREQUAL "")
message(FATAL_ERROR "Output file is not specified")
endif()
configure_file("${IN_FILE}" "${OUT_FILE}" @ONLY)