2018-08-21 23:46:45 +08:00
|
|
|
# hstr.pro Qt project file for HSTR shell history compleation utility
|
2018-07-31 00:29:42 +08:00
|
|
|
#
|
2022-12-11 03:20:52 +08:00
|
|
|
# Copyright (C) 2014-2022 Martin Dvorak <martin.dvorak@mindforger.com>
|
2018-07-31 00:29:42 +08:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-08-18 02:51:33 +08:00
|
|
|
#########################################################################
|
|
|
|
#
|
|
|
|
# QMake build options:
|
2018-08-21 23:46:45 +08:00
|
|
|
# qmake CONFIG+=hstrdebug ... add extra debug and profiling info
|
2018-08-18 02:51:33 +08:00
|
|
|
#
|
|
|
|
#########################################################################
|
|
|
|
|
|
|
|
|
2018-07-31 00:29:42 +08:00
|
|
|
TEMPLATE = app
|
|
|
|
CONFIG += console
|
|
|
|
CONFIG -= app_bundle
|
|
|
|
CONFIG -= qt
|
|
|
|
|
2018-08-11 02:03:54 +08:00
|
|
|
# -L for where to look for library, -l for linking the library
|
2019-11-22 08:54:50 +08:00
|
|
|
LIBS += -lm -lreadline -lncursesw -ltinfo
|
2018-07-31 00:29:42 +08:00
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
src/hashset.c \
|
|
|
|
src/hstr_blacklist.c \
|
|
|
|
src/hstr_curses.c \
|
|
|
|
src/hstr_favorites.c \
|
|
|
|
src/hstr_history.c \
|
|
|
|
src/hstr_regexp.c \
|
|
|
|
src/hstr_utils.c \
|
|
|
|
src/hstr.c \
|
2018-08-12 14:25:04 +08:00
|
|
|
src/radixsort.c \
|
|
|
|
src/main.c
|
2018-07-31 00:29:42 +08:00
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
src/include/hashset.h \
|
|
|
|
src/include/hstr_blacklist.h \
|
|
|
|
src/include/hstr_curses.h \
|
|
|
|
src/include/hstr_favorites.h \
|
|
|
|
src/include/hstr_history.h \
|
|
|
|
src/include/hstr_regexp.h \
|
|
|
|
src/include/hstr_utils.h \
|
2018-08-12 14:25:04 +08:00
|
|
|
src/include/radixsort.h \
|
|
|
|
src/include/hstr.h
|
2018-08-11 02:03:54 +08:00
|
|
|
|
|
|
|
# compiler and linker
|
2018-08-18 02:51:33 +08:00
|
|
|
hstrdebug {
|
|
|
|
QMAKE_CC = ccache gcc -g -pg
|
|
|
|
} else {
|
|
|
|
QMAKE_CC = ccache gcc
|
|
|
|
}
|
2018-08-11 02:03:54 +08:00
|
|
|
QMAKE_LINK = gcc
|