初始化代码库
This commit is contained in:
commit
a483cadb0e
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.idea
|
||||||
|
bin
|
||||||
|
cmake-build-debug
|
17
CMakeLists.txt
Normal file
17
CMakeLists.txt
Normal 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)
|
Loading…
Reference in New Issue
Block a user