forked from GerhardHoffmann/DCLibraries
23 lines
413 B
Prolog
23 lines
413 B
Prolog
TEMPLATE = lib
|
|
TARGET = CAslave
|
|
VERSION="1.0.0"
|
|
|
|
include(../DCLibraries.pri)
|
|
|
|
HEADERS -= $$PWD/include/com.h \
|
|
$$PWD/include/datIf.h \
|
|
$$PWD/include/prot.h
|
|
|
|
SOURCES -= \
|
|
$${PWD}/src/datIf.cpp \
|
|
$${PWD}/src/prot.cpp \
|
|
$${PWD}/src/com.cpp
|
|
|
|
DEFINES+=THIS_IS_CA_SLAVE
|
|
DESTDIR=$${_PRO_FILE_PWD_}/../build
|
|
|
|
unix {
|
|
system("mkdir -p $${DESTDIR}")
|
|
system("cp ../include/interfaces.h $${DESTDIR}")
|
|
}
|