18 lines
264 B
CMake
18 lines
264 B
CMake
message(STATUS " Configuring Display")
|
|
|
|
add_library(Display
|
|
INTERFACE
|
|
)
|
|
|
|
add_subdirectory(Graphics)
|
|
add_subdirectory(UI)
|
|
|
|
target_link_libraries(Display
|
|
INTERFACE Graphics UI
|
|
)
|
|
|
|
target_include_directories(Display
|
|
INTERFACE
|
|
${INCLUDE_BASE_DIR}
|
|
)
|