aboutsummaryrefslogtreecommitdiffhomepage
path: root/externals/qhexedit/CMakeLists.txt
blob: e7470dfe426964675b32fe6bc6d4a82ff80b0f55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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})