mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-07-04 23:31:19 +01: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})
|