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.
22 lines
450 B
CMake
22 lines
450 B
CMake
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
set(SRCS
|
|
commands.cpp
|
|
qhexedit.cpp
|
|
qhexedit_p.cpp
|
|
xbytearray.cpp
|
|
)
|
|
|
|
set(HEADERS
|
|
commands.h
|
|
qhexedit.h
|
|
qhexedit_p.h
|
|
xbytearray.h
|
|
)
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
|
|
|
add_library(qhexedit STATIC ${SRCS} ${HEADERS})
|
|
target_link_libraries(qhexedit ${CITRA_QT_LIBS})
|