mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-01 05:08:05 -06:00
add basic cmake support
This commit is contained in:
committed by
Eugene Shalygin
parent
654c8edc6b
commit
64daecb266
25
src/webui/qjson/CMakeLists.txt
Normal file
25
src/webui/qjson/CMakeLists.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
include_directories("${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
set(QJSON_HEADERS
|
||||
FlexLexer.h
|
||||
stack.hh
|
||||
position.hh
|
||||
location.hh
|
||||
json_parser.hh
|
||||
json_scanner.h
|
||||
parser.h
|
||||
parser_p.h
|
||||
qjson_debug.h
|
||||
qjson_export.h
|
||||
serializer.h
|
||||
)
|
||||
|
||||
set(QJSON_SOURCES
|
||||
json_parser.cc
|
||||
json_scanner.cc
|
||||
json_scanner.cpp
|
||||
parser.cpp
|
||||
serializer.cpp
|
||||
)
|
||||
|
||||
add_library(qjson STATIC ${QJSON_HEADERS} ${QJSON_SOURCES})
|
||||
|
||||
Reference in New Issue
Block a user