初始化代码库

This commit is contained in:
xianya 2024-12-27 17:50:57 +08:00
commit a483cadb0e
3 changed files with 260513 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.idea
bin
cmake-build-debug

17
CMakeLists.txt Normal file
View File

@ -0,0 +1,17 @@
cmake_minimum_required(VERSION 3.29)
project(o C)
set(CMAKE_C_STANDARD 11)
include_directories(bin)
include_directories(data)
add_executable(o
bin/function.h
bin/sqlite3.h
bin/sqlite3ext.h
bin/extern.h
bin/myerror.h
main.c
sqlite3.c)

260493
sqlite3.c Normal file

File diff suppressed because it is too large Load Diff