initial commit

This commit is contained in:
Hannah 2026-01-31 00:04:41 +01:00
commit 10b3e96489
12 changed files with 52 additions and 0 deletions

11
.kdev4/lifecrystal.kdev4 Normal file
View file

@ -0,0 +1,11 @@
[Buildset]
BuildItems=@Variant(\x00\x00\x00\t\x00\x00\x00\x00\x01\x00\x00\x00\x0b\x00\x00\x00\x00\x01\x00\x00\x00\x16\x00l\x00i\x00f\x00e\x00c\x00r\x00y\x00s\x00t\x00a\x00l)
[Launch]
Launch Configurations=
[Project]
VersionControlSupport=kdevgit
[SourceFileTemplates]
LastUsedTemplate=/home/Hannah/.local/share/kdevfiletemplates/template_descriptions/cmake_module.desktop

2
CMakeLists.txt Normal file
View file

@ -0,0 +1,2 @@
cmake_minimum_required(VERSION 4.2)
project(lifecrystal C)

1
assets/gfx/.temp Normal file
View file

@ -0,0 +1 @@

1
assets/sfx/.temp Normal file
View file

@ -0,0 +1 @@

1
assets/vfx/.temp Normal file
View file

@ -0,0 +1 @@

1
build/.temp Normal file
View file

@ -0,0 +1 @@

30
find.cmake Normal file
View file

@ -0,0 +1,30 @@
# SPDX-FileCopyrightText: 2026 <copyright holder> <email>
# SPDX-License-Identifier: Apache-2.0
# - Try to find
# Once done this will define
# _FOUND - System has
# _INCLUDE_DIRS - The include directories
# _LIBRARIES - The libraries needed to use
# _DEFINITIONS - Compiler switches required for using
find_package(PkgConfig)
pkg_check_modules(PC_ QUIET )
set(_DEFINITIONS ${PC__CFLAGS_OTHER})
find_path(_INCLUDE_DIR
HINTS ${PC__INCLUDEDIR} ${PC__INCLUDE_DIRS}
PATH_SUFFIXES )
find_library(_LIBRARY NAMES
HINTS ${PC__LIBDIR} ${PC__LIBRARY_DIRS} )
set(_LIBRARIES ${_LIBRARY} )
set(_INCLUDE_DIRS ${_INCLUDE_DIR} )
include(FindPackageHandleStandardArgs)
# handle the QUIETLY and REQUIRED arguments and set _FOUND to TRUE
# if all listed variables are TRUE
find_package_handle_standard_args( DEFAULT_MSG
_LIBRARY _INCLUDE_DIR)
mark_as_advanced(_INCLUDE_DIR _LIBRARY )

1
libs/.temp Normal file
View file

@ -0,0 +1 @@

1
src/engines/.temp Normal file
View file

@ -0,0 +1 @@

1
src/helper/.temp Normal file
View file

@ -0,0 +1 @@

1
src/logic/.temp Normal file
View file

@ -0,0 +1 @@

1
src/main.c Normal file
View file

@ -0,0 +1 @@