citra/externals/qhexedit/CMakeLists.txt

22 lines
450 B
CMake
Raw Normal View History

2014-08-18 10:05:44 +05:30
set(CMAKE_AUTOMOC ON)
2014-08-19 17:04:00 +05:30
set(CMAKE_INCLUDE_CURRENT_DIR ON)
2014-08-18 10:05:44 +05:30
2013-08-30 09:05:09 +05:30
set(SRCS
commands.cpp
qhexedit.cpp
qhexedit_p.cpp
xbytearray.cpp
)
2013-08-30 09:05:09 +05:30
2014-08-18 10:05:44 +05:30
set(HEADERS
commands.h
2014-08-18 10:05:44 +05:30
qhexedit.h
qhexedit_p.h
xbytearray.h
)
2013-08-30 09:05:09 +05:30
create_directory_groups(${SRCS} ${HEADERS})
2014-08-19 17:04:00 +05:30
add_library(qhexedit STATIC ${SRCS} ${HEADERS})
target_link_libraries(qhexedit ${CITRA_QT_LIBS})