1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-28 18:46:55 -06:00
suyu-mirror/externals/qhexedit/CMakeLists.txt

19 lines
362 B
CMake
Raw Normal View History

2014-08-18 14:35:44 +10:00
set(CMAKE_AUTOMOC ON)
2014-08-19 21:34:00 +10:00
set(CMAKE_INCLUDE_CURRENT_DIR ON)
2014-08-18 14:35:44 +10:00
2013-08-29 23:35:09 -04:00
set(SRCS
commands.cpp
qhexedit.cpp
qhexedit_p.cpp
xbytearray.cpp)
2014-08-18 14:35:44 +10:00
set(HEADERS
qhexedit.h
qhexedit_p.h)
2013-08-29 23:35:09 -04:00
2014-08-18 14:35:44 +10:00
add_library(qhexedit STATIC ${SRCS} ${HEADERS})
2014-08-19 21:34:00 +10:00
if(USE_QT5)
target_link_libraries(qhexedit Qt5::Core Qt5::Widgets)
endif()