Warning, /education/marble/src/plugins/render/weather/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 PROJECT(Weather)
0002
0003 INCLUDE_DIRECTORIES(
0004 ${CMAKE_CURRENT_SOURCE_DIR}
0005 ${CMAKE_CURRENT_BINARY_DIR}
0006 )
0007
0008 set( weather_SRCS WeatherData.cpp
0009 WeatherItem.cpp
0010 WeatherModel.cpp
0011 WeatherPlugin.cpp
0012 AbstractWeatherService.cpp
0013 BBCItemGetter.cpp
0014 BBCParser.cpp
0015 BBCStation.cpp
0016 BBCWeatherService.cpp
0017 BBCWeatherItem.cpp
0018 FakeWeatherService.cpp
0019 FakeWeatherItem.cpp
0020 StationListParser.cpp
0021 GeoNamesWeatherService.cpp
0022 GeoNamesWeatherItem.cpp )
0023 set( weather_UI WeatherConfigWidget.ui )
0024
0025 qt_wrap_ui( weather_SRCS ${weather_UI} )
0026 qt_add_resources( weather_SRCS weather.qrc )
0027
0028 set(Weather_LIBS Qt5::Svg)
0029
0030 marble_add_plugin( Weather ${weather_SRCS} )