-
Notifications
You must be signed in to change notification settings - Fork 1
/
QMake.pro
27 lines (22 loc) · 839 Bytes
/
QMake.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
CONFIG += debug
CONFIG += silent
HEADERS = src/main/main_widget.h \
src/menu/menu_widget.h \
src/menu/menu_button.h \
src/content/content_holder.h \
src/content/content_base.h \
src/content/image/image_analyzer.h \
src/content/image/png_decoder.h \
src/content/sudoku/sudoku_widget.h
SOURCES = src/main/app_launcher.cpp \
src/main/main_widget.cpp \
src/menu/menu_widget.cpp \
src/menu/menu_button.cpp \
src/content/content_holder.cpp \
src/content/content_base.cpp \
src/content/image/image_analyzer.cpp \
src/content/image/png_decoder.cpp \
src/content/sudoku/sudoku_widget.cpp
QT += widgets
LIBS += -lboost_iostreams
TARGET = ultimate_geocache_tool