mirror of https://github.com/yuzu-mirror/yuzu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
310 B
CMake
14 lines
310 B
CMake
12 years ago
|
set(SRCS
|
||
|
commands.cpp
|
||
|
qhexedit.cpp
|
||
|
qhexedit_p.cpp
|
||
|
xbytearray.cpp)
|
||
|
|
||
|
qt4_wrap_cpp(MOC_SRCS
|
||
|
qhexedit.h
|
||
|
qhexedit_p.h)
|
||
|
|
||
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||
|
|
||
|
add_library(qhexedit STATIC ${SRCS} ${MOC_SRCS})
|