mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
19 lines
436 B
CMake
19 lines
436 B
CMake
project(kfirewall)
|
|
|
|
if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
|
|
include(FeatureSummary)
|
|
|
|
find_package(KDELibs4 4.21.0 REQUIRED)
|
|
|
|
include_directories(${KDE4_INCLUDES})
|
|
add_definitions(${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
|
|
endif()
|
|
|
|
find_program(IPTABLES_EXECUTABLE iptables-restore)
|
|
add_feature_info(iptables
|
|
IPTABLES_EXECUTABLE
|
|
"Firewall support"
|
|
)
|
|
|
|
add_subdirectory(kcm)
|
|
add_subdirectory(kded)
|