2023-02-06 16:45:18 +00:00
|
|
|
set(STATUSQ_DIR ${CMAKE_CURRENT_LIST_DIR})
|
|
|
|
|
|
|
|
set(STATUSQ_HEADERS
|
|
|
|
${STATUSQ_DIR}/include/StatusQ/QClipboardProxy.h
|
2023-02-17 13:36:58 +00:00
|
|
|
${STATUSQ_DIR}/include/StatusQ/modelutilsinternal.h
|
2023-02-06 16:45:18 +00:00
|
|
|
${STATUSQ_DIR}/include/StatusQ/rxvalidator.h
|
2023-02-17 13:36:58 +00:00
|
|
|
${STATUSQ_DIR}/include/StatusQ/statussyntaxhighlighter.h
|
|
|
|
${STATUSQ_DIR}/include/StatusQ/statuswindow.h
|
|
|
|
${STATUSQ_DIR}/include/StatusQ/typesregistration.h
|
2023-02-06 16:45:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(STATUSQ_SOURCES
|
|
|
|
${STATUSQ_DIR}/src/QClipboardProxy.cpp
|
2023-02-17 13:36:58 +00:00
|
|
|
${STATUSQ_DIR}/src/modelutilsinternal.cpp
|
2023-02-06 16:45:18 +00:00
|
|
|
${STATUSQ_DIR}/src/rxvalidator.cpp
|
2023-02-17 13:36:58 +00:00
|
|
|
${STATUSQ_DIR}/src/statussyntaxhighlighter.cpp
|
|
|
|
${STATUSQ_DIR}/src/statuswindow.cpp
|
|
|
|
${STATUSQ_DIR}/src/typesregistration.cpp
|
2023-02-06 16:45:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if(APPLE)
|
|
|
|
list(APPEND STATUSQ_SOURCES
|
|
|
|
${STATUSQ_DIR}/src/statuswindow_osx.mm
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
list(APPEND STATUSQ_SOURCES
|
|
|
|
${STATUSQ_DIR}/src/statuswindow_other.cpp
|
|
|
|
)
|
|
|
|
endif()
|