mirror of https://git.suyu.dev/suyu/suyu
CMake Cleanup
parent
68c81f28d9
commit
b7ecc9543a
@ -1,13 +1,15 @@
|
|||||||
|
set(CMAKE_AUTOMOC ON)
|
||||||
|
|
||||||
set(SRCS
|
set(SRCS
|
||||||
commands.cpp
|
commands.cpp
|
||||||
qhexedit.cpp
|
qhexedit.cpp
|
||||||
qhexedit_p.cpp
|
qhexedit_p.cpp
|
||||||
xbytearray.cpp)
|
xbytearray.cpp)
|
||||||
|
|
||||||
qt4_wrap_cpp(MOC_SRCS
|
set(HEADERS
|
||||||
qhexedit.h
|
qhexedit.h
|
||||||
qhexedit_p.h)
|
qhexedit_p.h)
|
||||||
|
|
||||||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||||
|
|
||||||
add_library(qhexedit STATIC ${SRCS} ${MOC_SRCS})
|
add_library(qhexedit STATIC ${SRCS} ${HEADERS})
|
||||||
|
Loading…
Reference in New Issue