mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
00389c50ea
- tabs to spaces - use Unix line endings everywhere - newline at end of file - remove trailing white space - no space between keywords and opening parenthesis - use 2 spaces to indent
20 lines
293 B
CMake
20 lines
293 B
CMake
set(HEADERS UIlib.h)
|
|
set(CPPS
|
|
UIButton.cpp
|
|
UICombo.cpp
|
|
UIConsole.cpp
|
|
UIDraw.cpp
|
|
UIEdit.cpp
|
|
UIGadget.cpp
|
|
UIGroup.cpp
|
|
UIHotspot.cpp
|
|
UIListBox.cpp
|
|
UIObject.cpp
|
|
UIRes.cpp
|
|
UISlider.cpp
|
|
UIStatic.cpp
|
|
UISystem.cpp
|
|
UIWindow.cpp)
|
|
|
|
add_library(ui STATIC ${HEADERS} ${CPPS})
|