git commit -m "first commit"

This commit is contained in:
2026-05-28 10:29:58 +07:00
commit 167c52aeb6
2048 changed files with 740251 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# - Config file for the sbpl package
# It defines the following variables
# SBPL_INCLUDE_DIRS - include directories for sbpl
# SBPL_LIBRARIES - libraries to link against
get_filename_component(SBPL_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
set(SBPL_INCLUDE_DIRS "@CONF_INCLUDE_DIRS@")
# Our library dependencies (contains definitions for IMPORTED targets)
if (NOT TARGET sbpl AND NOT sbpl_BINARY_DIR)
include("${SBPL_CMAKE_DIR}/sbpl-targets.cmake")
endif()
# These are IMPORTED targets created by sbpl-targets.cmake
set(SBPL_LIBRARIES sbpl)