aboutsummaryrefslogtreecommitdiff
path: root/libraries/classparser/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/classparser/CMakeLists.txt')
-rw-r--r--libraries/classparser/CMakeLists.txt42
1 files changed, 0 insertions, 42 deletions
diff --git a/libraries/classparser/CMakeLists.txt b/libraries/classparser/CMakeLists.txt
deleted file mode 100644
index 05412c30..00000000
--- a/libraries/classparser/CMakeLists.txt
+++ /dev/null
@@ -1,42 +0,0 @@
-project(classparser)
-
-set(CMAKE_AUTOMOC ON)
-
-######## Check endianness ########
-include(TestBigEndian)
-test_big_endian(BIGENDIAN)
-if(${BIGENDIAN})
- add_definitions(-DMULTIMC_BIG_ENDIAN)
-endif(${BIGENDIAN})
-
-# Find Qt
-if(QT_VERSION_MAJOR EQUAL 5)
- find_package(Qt5 COMPONENTS Core REQUIRED)
-elseif(Launcher_QT_VERSION_MAJOR EQUAL 6)
- find_package(Qt6 COMPONENTS Core REQUIRED)
-endif()
-
-set(CLASSPARSER_HEADERS
-# Public headers
-include/classparser_config.h
-include/classparser.h
-
-# Private headers
-src/annotations.h
-src/classfile.h
-src/constants.h
-src/errors.h
-src/javaendian.h
-src/membuffer.h
-)
-
-set(CLASSPARSER_SOURCES
-src/classparser.cpp
-src/annotations.cpp
-)
-
-add_definitions(-DCLASSPARSER_LIBRARY)
-
-add_library(Launcher_classparser STATIC ${CLASSPARSER_SOURCES} ${CLASSPARSER_HEADERS})
-target_include_directories(Launcher_classparser PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
-target_link_libraries(Launcher_classparser QuaZip::QuaZip Qt${QT_VERSION_MAJOR}::Core)