ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
16 lines
381 B
CMake
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)
|