mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
11 lines
310 B
CMake
11 lines
310 B
CMake
include_directories(
|
|
${CMAKE_SOURCE_DIR}/kross
|
|
${KDE4_KDECORE_INCLUDES}
|
|
${KDE4_KDEUI_INCLUDES}
|
|
${KDE4_KIO_INCLUDES}
|
|
)
|
|
|
|
set(kross_SRCS main.cpp )
|
|
add_executable(kross ${kross_SRCS})
|
|
target_link_libraries(kross ${KDE4_KDEUI_LIBS} krosscore)
|
|
install(TARGETS kross ${INSTALL_TARGETS_DEFAULT_ARGS})
|