kde-workspace/kcontrol/krdb/CMakeLists.txt
Ivailo Monev 850c98cc3d kcontrol: convert krdb to standalone program
fixes some race-conditions, for reference:
9ed7286504

also the exit() call in case of failure to open the temporary file would
exit the program calling runRdb() (systemsettings for example) with
status 0 (normal, when an error ocurred), that is no longer the case

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-07-24 08:04:16 +03:00

12 lines
188 B
CMake

add_subdirectory( ad )
add_executable(krdb main.cpp)
target_link_libraries(krdb
KDE4::kdeui
${X11_X11_LIB}
)
install(
TARGETS krdb
DESTINATION ${KDE4_BIN_INSTALL_DIR}
)