2013-06-02 20:00:43 +02:00
|
|
|
# qucs/paintings library
|
|
|
|
|
2023-02-12 20:43:24 +01:00
|
|
|
INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_SOURCE_DIR} )
|
2013-06-02 20:00:43 +02:00
|
|
|
|
|
|
|
#INCLUDES = $(X11_INCLUDES) $(QT_INCLUDES) -I$(top_srcdir)/qucs
|
|
|
|
|
2014-11-30 11:08:07 +01:00
|
|
|
SET(PAINTINGS_HDRS
|
|
|
|
arrow.h
|
|
|
|
arrowdialog.h
|
|
|
|
ellipse.h
|
|
|
|
ellipsearc.h
|
|
|
|
filldialog.h
|
|
|
|
graphicline.h
|
|
|
|
graphictext.h
|
|
|
|
graphictextdialog.h
|
|
|
|
id_dialog.h
|
|
|
|
id_text.h
|
|
|
|
painting.h
|
|
|
|
paintings.h
|
|
|
|
portsymbol.h
|
|
|
|
rectangle.h
|
|
|
|
)
|
|
|
|
|
2013-06-02 20:00:43 +02:00
|
|
|
SET(PAINTINGS_SRCS
|
|
|
|
arrow.cpp arrowdialog.cpp
|
|
|
|
graphicline.cpp id_text.cpp
|
|
|
|
graphictext.cpp painting.cpp
|
|
|
|
ellipse.cpp graphictextdialog.cpp
|
|
|
|
portsymbol.cpp ellipsearc.cpp
|
|
|
|
rectangle.cpp filldialog.cpp
|
|
|
|
id_dialog.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(PAINTINGS_MOC_HDRS
|
|
|
|
arrowdialog.h
|
|
|
|
filldialog.h
|
|
|
|
graphictextdialog.h
|
|
|
|
id_dialog.h
|
|
|
|
)
|
|
|
|
|
2023-02-13 22:20:42 +03:00
|
|
|
|
2025-01-03 22:06:56 +03:00
|
|
|
QT6_WRAP_CPP( PAINTINGS_MOC_SRCS ${PAINTINGS_MOC_HDRS} )
|
2013-06-02 20:00:43 +02:00
|
|
|
|
2022-02-20 16:27:02 +01:00
|
|
|
ADD_LIBRARY(paintings STATIC ${PAINTINGS_HDRS} ${PAINTINGS_SRCS} ${PAINTINGS_MOC_SRCS} )
|
2013-06-02 20:00:43 +02:00
|
|
|
|