From e5a9b74c909b88963b38d2dd71d41030e5d8354b Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 12 Dec 2023 01:23:34 +0000 Subject: [PATCH] cmake: publish 0.5 --- CMakeLists.txt | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a2f23c2e..2628bcde 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.21) # Minimum CEF requirement, but building with the latest cmake is strongly recommended -project(Bolt VERSION 0.4 LANGUAGES C CXX) +project(Bolt VERSION 0.5 LANGUAGES C CXX) # e.g. becomes "libbolt-overlay.so" on linux set(BOLT_OVERLAY_NAME "bolt-overlay") @@ -43,6 +43,7 @@ if(NOT WIN32) " https://raw.githubusercontent.com/flathub/net.runelite.RuneLite/master/screenshot.png" "" "" + " " " " " " " " @@ -241,13 +242,13 @@ else() endif() # Build helper libraries -if(NOT BOLT_SKIP_LIBRARIES) - if(UNIX AND NOT APPLE) - add_library(${BOLT_OVERLAY_NAME} SHARED src/library/so/main.c src/library/gl.c) - install(TARGETS ${BOLT_OVERLAY_NAME} DESTINATION "${BOLT_LIBDIR}") - target_compile_definitions(bolt PUBLIC BOLT_LIB_NAME="${BOLT_OVERLAY_NAME}") - endif() -endif() +#if(NOT BOLT_SKIP_LIBRARIES) +# if(UNIX AND NOT APPLE) +# add_library(${BOLT_OVERLAY_NAME} SHARED src/library/so/main.c src/library/gl.c) +# install(TARGETS ${BOLT_OVERLAY_NAME} DESTINATION "${BOLT_LIBDIR}") +# target_compile_definitions(bolt PUBLIC BOLT_LIB_NAME="${BOLT_OVERLAY_NAME}") +# endif() +#endif() # Finally, install shell script and metadata if(NOT WIN32)