2013-08-17 17:10:51 +05:30
|
|
|
project(classparser)
|
|
|
|
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
|
2015-02-10 01:30:45 +05:30
|
|
|
######## Check endianness ########
|
|
|
|
include(TestBigEndian)
|
|
|
|
test_big_endian(BIGENDIAN)
|
|
|
|
if(${BIGENDIAN})
|
2018-07-15 18:21:05 +05:30
|
|
|
add_definitions(-DMULTIMC_BIG_ENDIAN)
|
2015-02-10 01:30:45 +05:30
|
|
|
endif(${BIGENDIAN})
|
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
# Find Qt
|
|
|
|
find_package(Qt5Core REQUIRED)
|
|
|
|
|
|
|
|
# Include Qt headers.
|
|
|
|
include_directories(${Qt5Base_INCLUDE_DIRS})
|
|
|
|
|
2014-04-06 23:13:09 +05:30
|
|
|
set(CLASSPARSER_HEADERS
|
2013-08-17 17:10:51 +05:30
|
|
|
# Public headers
|
2015-09-29 00:23:46 +05:30
|
|
|
include/classparser_config.h
|
2017-09-27 19:09:13 +05:30
|
|
|
include/classparser.h
|
2013-08-17 17:10:51 +05:30
|
|
|
|
|
|
|
# Private headers
|
|
|
|
src/annotations.h
|
|
|
|
src/classfile.h
|
|
|
|
src/constants.h
|
|
|
|
src/errors.h
|
|
|
|
src/javaendian.h
|
|
|
|
src/membuffer.h
|
|
|
|
)
|
|
|
|
|
2014-04-06 23:13:09 +05:30
|
|
|
set(CLASSPARSER_SOURCES
|
2017-09-27 19:09:13 +05:30
|
|
|
src/classparser.cpp
|
2013-08-17 17:10:51 +05:30
|
|
|
src/annotations.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
add_definitions(-DCLASSPARSER_LIBRARY)
|
|
|
|
|
2017-09-27 19:09:13 +05:30
|
|
|
add_library(MultiMC_classparser STATIC ${CLASSPARSER_SOURCES} ${CLASSPARSER_HEADERS})
|
|
|
|
target_include_directories(MultiMC_classparser PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
|
2018-06-01 19:50:33 +05:30
|
|
|
target_link_libraries(MultiMC_classparser MultiMC_quazip Qt5::Core)
|