From 267e5b1769ffd4bcc1b520d57bfe32b5029bab00 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 11 May 2022 16:46:11 +0200 Subject: Ignore and simplistic README --- .gitignore | 9 +++++++++ README | 16 +++++++++++++++- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f75f2a1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +build/ +nanny/ +old/ +sockets/ +test/ +src/moc_* +configuration.cc +ctor +config.h \ No newline at end of file diff --git a/README b/README index 050ae2f..fd7ac92 100644 --- a/README +++ b/README @@ -1 +1,15 @@ -This is the Qookie README file \ No newline at end of file +This is the Qookie README file + +apt install build-essential +add-apt-repository -y ppa:ubuntu-toolchain-r/test +apt install -y g++-11 +update-alternatives --remove-all gcc +update-alternatives --remove-all g++ +update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 10 +update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-11 10 +g++ --version +apt-get install qt5-default +apt install libsqlite3-dev +apt install qtcreator +#(cd src; for h in `grep Q_OBJECT *.h | cut -d: -f1`; do moc $h > moc_$h; done) +moc mainwindow.h > moc_mainwindow.cc -- cgit v1.2.3