mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 19:22:30 -05:00
166a905951
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.
19 lines
365 B
CMake
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)
|