mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
init sqlite database library
This commit is contained in:
parent
cf64949986
commit
814b25a946
7 changed files with 57 additions and 5 deletions
7
Makefile
7
Makefile
|
|
@ -1,7 +1,7 @@
|
|||
# Define compiler and flags
|
||||
CXX = g++
|
||||
CXXFLAGS = `pkg-config --cflags gtkmm-4.0 glibmm-2.68`
|
||||
LDFLAGS = `pkg-config --libs gtkmm-4.0 glibmm-2.68`
|
||||
CXXFLAGS = `pkg-config --cflags gtkmm-4.0 glibmm-2.68 sqlite3`
|
||||
LDFLAGS = `pkg-config --libs gtkmm-4.0 glibmm-2.68 sqlite3`
|
||||
|
||||
# Define target executable and source files
|
||||
TARGET = bin/Yoda
|
||||
|
|
@ -10,7 +10,8 @@ SRCS = src/main.cpp\
|
|||
src/app/browser/header.cpp\
|
||||
src/app/browser/header/menu.cpp\
|
||||
src/app/browser/header/tab.cpp\
|
||||
src/app/browser/page.cpp
|
||||
src/app/browser/page.cpp\
|
||||
src/lib/database.cpp
|
||||
|
||||
OBJS = $(SRCS:.cpp=.o)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue