diff options
author | crupest <crupest@outlook.com> | 2019-04-10 19:42:46 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-04-10 19:42:46 +0800 |
commit | 7351020a582d70a1495249fba87d342c8a1fb634 (patch) | |
tree | e80f225041dc3816b3dce21c7e15aadbb211602e /src/ui/CMakeLists.txt | |
parent | a94a806f69586e08a30fff0cdb3e52b0ce7acfa5 (diff) | |
download | cru-7351020a582d70a1495249fba87d342c8a1fb634.tar.gz cru-7351020a582d70a1495249fba87d342c8a1fb634.tar.bz2 cru-7351020a582d70a1495249fba87d342c8a1fb634.zip |
Refactor.
Diffstat (limited to 'src/ui/CMakeLists.txt')
-rw-r--r-- | src/ui/CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt new file mode 100644 index 00000000..900948ca --- /dev/null +++ b/src/ui/CMakeLists.txt @@ -0,0 +1,22 @@ +add_library(cru_ui STATIC + content_control.cpp + control.cpp + layout_control.cpp + no_child_control.cpp + ui_manager.cpp + window.cpp + controls/button.cpp + controls/flex_layout.cpp + controls/text_block.cpp + render/border_render_object.cpp + render/flex_layout_render_object.cpp + render/render_object.cpp + render/text_render_object.cpp + render/window_render_object.cpp) + +target_include_directories(cru_ui PUBLIC ${PROJECT_SOURCE_DIR}/include .) + +if(WIN32) +target_link_libraries(cru_ui PUBLIC cru_win_native) +endif() + |