This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2014-08-18 04:35:44 +00:00
|
|
|
set(CMAKE_AUTOMOC ON)
|
2014-08-19 11:34:00 +00:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
2014-08-18 04:35:44 +00:00
|
|
|
|
2013-08-30 03:35:09 +00:00
|
|
|
set(SRCS
|
|
|
|
commands.cpp
|
|
|
|
qhexedit.cpp
|
|
|
|
qhexedit_p.cpp
|
|
|
|
xbytearray.cpp)
|
|
|
|
|
2014-08-18 04:35:44 +00:00
|
|
|
set(HEADERS
|
|
|
|
qhexedit.h
|
|
|
|
qhexedit_p.h)
|
2013-08-30 03:35:09 +00:00
|
|
|
|
2014-08-18 04:35:44 +00:00
|
|
|
add_library(qhexedit STATIC ${SRCS} ${HEADERS})
|
2014-08-19 11:34:00 +00:00
|
|
|
if(USE_QT5)
|
|
|
|
target_link_libraries(qhexedit Qt5::Core Qt5::Widgets)
|
|
|
|
endif()
|
|
|
|
|