This repository has been archived on 2020-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
2016-01-04 17:49:12 +01:00
|
|
|
set(HEADERS mainwindow.h
|
2015-12-31 17:46:52 +01:00
|
|
|
)
|
|
|
|
|
2016-01-04 17:49:12 +01:00
|
|
|
set(SOURCES mainwindow.cpp
|
2015-12-31 17:46:52 +01:00
|
|
|
)
|
|
|
|
|
2016-01-04 17:49:12 +01:00
|
|
|
add_subdirectory(model)
|
|
|
|
add_subdirectory(editor)
|
2016-10-13 23:31:48 +02:00
|
|
|
add_subdirectory(protocol)
|
2016-01-04 17:49:12 +01:00
|
|
|
|
2015-12-31 17:46:52 +01:00
|
|
|
add_library(src ${HEADERS} ${SOURCES})
|
2016-10-13 23:31:48 +02:00
|
|
|
target_link_libraries(src model editor protocol)
|
2015-12-31 18:52:24 +01:00
|
|
|
qt5_use_modules(src Widgets)
|