mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
15 lines
298 B
CMake
15 lines
298 B
CMake
set(CMAKE_AUTOMOC ON)
|
|
|
|
set(SRCS
|
|
commands.cpp
|
|
qhexedit.cpp
|
|
qhexedit_p.cpp
|
|
xbytearray.cpp)
|
|
|
|
set(HEADERS
|
|
qhexedit.h
|
|
qhexedit_p.h)
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
add_library(qhexedit STATIC ${SRCS} ${HEADERS})
|