ladybird/Userland/Applications/NetworkSettings/CMakeLists.txt
Ali Mohammad Pur 166a905951 Userland: Properly populate GENERATED_SOURCES
We previously put the generated headers in SOURCES, which did not mark
them as GENERATED (and did not produce a proper dependency).
This commit moves all generated headers into GENERATED_SOURCES, and
removes useless header SOURCES.
2022-10-12 15:55:15 +01:00

19 lines
365 B
CMake

serenity_component(
NetworkSettings
REQUIRED
TARGETS NetworkSettings
)
compile_gml(NetworkSettings.gml NetworkSettingsGML.h network_settings_gml)
set(SOURCES
NetworkSettingsWidget.cpp
main.cpp
)
set(GENERATED_SOURCES
NetworkSettingsGML.h
)
serenity_app(NetworkSettings ICON network)
target_link_libraries(NetworkSettings LibGUI LibMain)