mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
13 lines
212 B
CMake
13 lines
212 B
CMake
project(parseucd)
|
|
|
|
include_directories(
|
|
${CMAKE_BINARY_DIR}
|
|
${X11_INCLUDE_DIR}
|
|
)
|
|
|
|
add_executable(parseucd parseucd/parseucd.cpp)
|
|
|
|
target_link_libraries(parseucd
|
|
${QT_LIBRARIES}
|
|
${X11_LIBRARIES}
|
|
)
|