mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 18:25:09 +00:00

This adds component declarations so that users can select to not build certain parts of the OS.
11 lines
168 B
CMake
11 lines
168 B
CMake
serenity_component(
|
|
FileOperation
|
|
TARGETS FileOperation
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(FileOperation)
|
|
target_link_libraries(FileOperation LibCore)
|