mirror of
https://github.com/fabiangreffrath/woof.git
synced 2025-08-03 04:37:39 -04:00
31 lines
1.2 KiB
CMake
31 lines
1.2 KiB
CMake
include(WoofSettings)
|
|
|
|
add_library(textscreen STATIC
|
|
textscreen.h
|
|
txt_button.c txt_button.h
|
|
txt_checkbox.c txt_checkbox.h
|
|
txt_desktop.c txt_desktop.h
|
|
txt_dropdown.c txt_dropdown.h
|
|
txt_fileselect.c txt_fileselect.h
|
|
txt_gui.c txt_gui.h
|
|
txt_inputbox.c txt_inputbox.h
|
|
txt_io.c txt_io.h
|
|
txt_label.c txt_label.h
|
|
txt_main.h
|
|
txt_scrollpane.c txt_scrollpane.h
|
|
txt_sdl.c txt_sdl.h
|
|
txt_separator.c txt_separator.h
|
|
txt_strut.c txt_strut.h
|
|
txt_table.c txt_table.h
|
|
txt_utf8.c txt_utf8.h
|
|
txt_widget.c txt_widget.h
|
|
txt_window.c txt_window.h
|
|
txt_window_action.c txt_window_action.h)
|
|
|
|
target_woof_settings(textscreen)
|
|
|
|
target_include_directories(textscreen
|
|
INTERFACE "."
|
|
PRIVATE "${CMAKE_CURRENT_BINARY_DIR}/../" "../src/")
|
|
target_link_libraries(textscreen SDL2::SDL2)
|