mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 16:35:06 +01:00
16 lines
298 B
CMake
16 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})
|