summaryrefslogtreecommitdiff
path: root/Userland/Applications/3DFileViewer/CMakeLists.txt
blob: 1a9b2c0233913d062576ec065f9560b19a168392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
serenity_component(
    3DFileViewer
    RECOMMENDED
    TARGETS 3DFileViewer
    DEPENDS FileSystemAccessServer
)

set(SOURCES
    Mesh.cpp
    WavefrontOBJLoader.cpp
    main.cpp
)

serenity_app(3DFileViewer ICON app-3d-file-viewer)
target_link_libraries(3DFileViewer LibGUI LibGL LibFileSystemAccessClient)