mirror of
https://github.com/GOSTSec/gostcoin
synced 2025-01-15 09:10:02 +00:00
26 lines
450 B
Prolog
26 lines
450 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2013-01-06T03:07:13
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT -= core gui
|
|
|
|
TARGET = i2psam
|
|
TEMPLATE = lib
|
|
CONFIG += staticlib
|
|
|
|
QMAKE_CXXFLAGS += -Wall -std=c++11
|
|
|
|
SOURCES += i2psam.cpp
|
|
|
|
HEADERS += i2psam.h
|
|
unix:!symbian {
|
|
maemo5 {
|
|
target.path = /opt/usr/lib
|
|
} else {
|
|
target.path = /usr/lib
|
|
}
|
|
INSTALLS += target
|
|
}
|