2014-08-18 00:35:44 -04:00
|
|
|
set(CMAKE_AUTOMOC ON)
|
2014-08-19 07:34:00 -04:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
2014-08-18 00:35:44 -04:00
|
|
|
|
2013-08-29 23:35:09 -04:00
|
|
|
set(SRCS
|
|
|
|
commands.cpp
|
|
|
|
qhexedit.cpp
|
|
|
|
qhexedit_p.cpp
|
2014-08-23 21:22:05 -04:00
|
|
|
xbytearray.cpp
|
|
|
|
)
|
2013-08-29 23:35:09 -04:00
|
|
|
|
2014-08-18 00:35:44 -04:00
|
|
|
set(HEADERS
|
2014-08-23 21:22:05 -04:00
|
|
|
commands.h
|
2014-08-18 00:35:44 -04:00
|
|
|
qhexedit.h
|
2014-08-23 21:22:05 -04:00
|
|
|
qhexedit_p.h
|
|
|
|
xbytearray.h
|
|
|
|
)
|
2013-08-29 23:35:09 -04:00
|
|
|
|
2014-08-23 21:22:05 -04:00
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
2014-08-19 07:34:00 -04:00
|
|
|
|
2014-08-23 21:22:05 -04:00
|
|
|
add_library(qhexedit STATIC ${SRCS} ${HEADERS})
|
|
|
|
target_link_libraries(qhexedit ${CITRA_QT_LIBS})
|