mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:38:10 +00:00

This adds component declarations so that users can select to not build certain parts of the OS.
14 lines
249 B
CMake
14 lines
249 B
CMake
serenity_component(
|
|
3DFileViewer
|
|
RECOMMENDED
|
|
TARGETS 3DFileViewer
|
|
)
|
|
|
|
set(SOURCES
|
|
Mesh.cpp
|
|
WavefrontOBJLoader.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_app(3DFileViewer ICON app-3d-file-viewer)
|
|
target_link_libraries(3DFileViewer LibGUI LibGL)
|