diff options
author | Meway <mewaysid92@gmail.com> | 2025-07-01 18:45:45 -0500 |
---|---|---|
committer | Meway <mewaysid92@gmail.com> | 2025-07-01 18:45:45 -0500 |
commit | 735959d2f759319310aec6451d4e845e8bc82b30 (patch) | |
tree | 5c5de8609fd75304e910242148ef86633eeadce0 | |
parent | 82ca0b75c3d63970c04e6c3756ed3524096e495f (diff) | |
download | verse-735959d2f759319310aec6451d4e845e8bc82b30.tar.gz verse-735959d2f759319310aec6451d4e845e8bc82b30.tar.bz2 verse-735959d2f759319310aec6451d4e845e8bc82b30.tar.xz verse-735959d2f759319310aec6451d4e845e8bc82b30.zip |
On Windows: users can now edit in vscode. I also removed linking data files to "program files (x86)" because this was not recommended by windows.
133 files changed, 36866 insertions, 1761 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index aaca9b88d..34a5c6d97 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12) -CMAKE_POLICY(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.16) +cmake_policy(VERSION 3.16) PROJECT(MANAPLUS) diff --git a/build.sh b/build.sh deleted file mode 100755 index e05972928..000000000 --- a/build.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/bash - -# ./build.sh | builds the project without linting -# ./build.sh lint | builds the project with linting (src, data, po) -# ./build.sh lintonly | just linting (src, data, po) - - -########## -#Required apps check -REQUIRED_APPS='g++ gcc xsel make autoconf automake autopoint gettext libxml2-dev libcurl4-gnutls-dev libpng-dev libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev gdb valgrind netcat-openbsd procps zlib*' - for APP in $REQUIRED_APPS; do - REQ_APP_CHECK=$(which "$APP") - if [[ "$REQ_APP_CHECK" == '' ]]; then - echo -e "$APP must be installed in order for build to run\nRequired Apps: $REQUIRED_APPS" >&2 - read -p "Do you want to try to build anyway? (Type \"yes\" to continue)" APP_ANS - if [[ "$APP_ANS" == 'yes' ]]; then - break - else - exit 0 - fi - fi - done - -dir=`pwd` - -if [[ ! -d "${dir}/src" ]]; then - echo "you can only build in the root directory of the project." - exit 1 -fi - -if [[ $1 == lin* ]]; then - if [[ ! -d "logs" ]]; then - mkdir -p logs - fi - echo "that can take a while, go make some coffee, tea... build a house, watch some movies... ^^'" - ./tools/ci/jobs/mplint.sh src | tee logs/mplint_src.log - ./tools/ci/jobs/mplint.sh po | tee logs/mplint_po.log - ./tools/ci/jobs/mplint.sh data | tee logs/mplint_data.log - ./tools/ci/jobs/cpplint.sh | tee logs/cpplint.log -fi -if [[ $1 != lintonly ]]; then - autoreconf -i - ./configure --prefix=$dir/run \ - --datadir=$dir/run/share/games \ - --bindir=$dir/run/bin \ - --mandir=$dir/run/share/man $* - - cd po - make update-gmo - cd .. - make - mkdir run - make install -fi diff --git a/build/.cmake/api/v1/query/client-integration-vscode/cache-v2 b/build/.cmake/api/v1/query/client-integration-vscode/cache-v2 new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/build/.cmake/api/v1/query/client-integration-vscode/cache-v2 diff --git a/build/.cmake/api/v1/query/client-integration-vscode/cmakeFiles-v1 b/build/.cmake/api/v1/query/client-integration-vscode/cmakeFiles-v1 new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/build/.cmake/api/v1/query/client-integration-vscode/cmakeFiles-v1 diff --git a/build/.cmake/api/v1/query/client-integration-vscode/codemodel-v2 b/build/.cmake/api/v1/query/client-integration-vscode/codemodel-v2 new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/build/.cmake/api/v1/query/client-integration-vscode/codemodel-v2 diff --git a/build/.cmake/api/v1/query/client-vscode/query.json b/build/.cmake/api/v1/query/client-vscode/query.json new file mode 100644 index 000000000..82bb96424 --- /dev/null +++ b/build/.cmake/api/v1/query/client-vscode/query.json @@ -0,0 +1 @@ +{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1},{"kind":"cmakeFiles","version":1}]}
\ No newline at end of file diff --git a/build/bcmake b/build/bcmake deleted file mode 100755 index 64f67e9bf..000000000 --- a/build/bcmake +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -cd .. - -export PATH=/home/mingw/cross/i686-w64-mingw32/bin:/home/mingw/cross/bin:$PATH -export CXXFLAGS="-Wall -O5 -flto -fwhole-program -ffast-math -funswitch-loops -funsafe-loop-optimizations -std=gnu++0x -Wno-attributes" -#export CXXFLAGS="-Wall -O5 -g1 -ffast-math -funswitch-loops -funsafe-loop-optimizations -std=gnu++0x" -cmake -DCMAKE_TOOLCHAIN_FILE=build/toolchain.cmake . 2>build/make1.log - -make -j16 VERBOSE=1 2>>build/make.log - diff --git a/build/bdeb.sh b/build/bdeb.sh deleted file mode 100755 index a1b2e5b4b..000000000 --- a/build/bdeb.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -cd .. -dpkg-buildpackage -rfakeroot -uc -b diff --git a/build/bmake b/build/bmake deleted file mode 100755 index ebeeb7b89..000000000 --- a/build/bmake +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -mkdir tmp -cd .. - -dir=`pwd` - -export CCACHE_DIR="${dir}/build/ccache/bmake" -export CC="ccache gcc" -export CXX="ccache g++" - -export LANG=C - -export CXXFLAGS="-pedantic -ggdb3 -O3 -pipe -ffast-math \ --D_FORTIFY_SOURCE=2 \ --std=gnu++2a \ --fno-var-tracking -Wno-attributes" - -source ./tools/ci/flags/gcc8.sh - -export CXXFLAGS="$CXXFLAGS -Wno-null-dereference" - -autoreconf -i -cd build/tmp -../../configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man \ ---enable-memdebug=no \ ---enable-tcmalloc=no \ ---enable-googleprofiler=no \ ---enable-werror - -cd po -make -j16 update-gmo 2>../../make1.log -cd .. -make -j16 2>../make2.log - diff --git a/build/bmake0 b/build/bmake0 deleted file mode 100755 index 71c6b587f..000000000 --- a/build/bmake0 +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh - -cd .. - -dir=`pwd` - -export CC=gcc -export CXX=g++ - -export LANG=C - -export CXXFLAGS="-Wvariadic-macros -Wvla -Wredundant-decls \ --Wpacked-bitfield-compat -Wtrampolines \ --Wsuggest-attribute=noreturn -Wunused -Wstrict-aliasing=2 \ --fstrict-aliasing -Wunreachable-code -Wabi -Wdisabled-optimization \ --Wvolatile-register-var -Winvalid-pch -Wredundant-decls \ --Wnormalized=nfkc -Wmissing-format-attribute -Wmissing-noreturn \ --Wswitch-default -Wsign-promo -Waddress -Wmissing-declarations \ --Wctor-dtor-privacy -Wstrict-null-sentinel -Wlogical-op \ --Wcast-align -Wpointer-arith -Wundef \ --Wmissing-include-dirs -Winit-self -pedantic -Wall -ggdb3 -O0 -pipe \ --Wpacked -Wextra -Wstrict-overflow=1 -Wunknown-pragmas -Wwrite-strings \ --Wstack-protector -Wshadow -Wunused-macros -Wsynth \ --Wbuiltin-macro-redefined -Wctor-dtor-privacy -Wdeprecated -Wextra \ --Wendif-labels -Wformat=1 -Wimport -Wnon-virtual-dtor -Wpsabi \ --Wsign-promo -Wwrite-strings -D_FORTIFY_SOURCE=2 -Wc++17-compat \ --Wdelete-non-virtual-dtor -Wmaybe-uninitialized -Wunused-local-typedefs \ --Wvector-operation-performance -Wfree-nonheap-object -Winvalid-memory-model \ --Wnarrowing -Wzero-as-null-pointer-constant \ --Wno-attributes" - -autoreconf -i -./configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man - -cd po -make -j5 update-gmo 2>../build/make1.log -cd .. -make -j5 2>build/make2.log - diff --git a/build/bmake44 b/build/bmake44 deleted file mode 100755 index 7d369939d..000000000 --- a/build/bmake44 +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh - -cd .. - -#may be -#-Wshadow -Waggregate-return -Winline - -#for feature -#-Wstrict-overflow=4 -Wfloat-equal -#-Wunsafe-loop-optimizations -#-Wnon-virtual-dtor -#-Woverloaded-virtual -#-Wformat=2 -#-Wswitch-enum - -#for better code -# -Weffc++ - -#need fix: -Wold-style-cast -Wconversion -#prof -pg - -dir=`pwd` - -export CC=gcc-4.4 -export CXX=g++-4.4 - -export LANG=C -export CXXFLAGS="-Wmissing-field-initializers \ --Wabi -Wdisabled-optimization -Wuninitialized \ --Wvolatile-register-var -Winvalid-pch -Wredundant-decls \ --Wnormalized=nfkc -Wmissing-format-attribute -Wmissing-noreturn \ --Wswitch-default -Wsign-promo -Waddress -Wmissing-declarations \ --Wctor-dtor-privacy -Wstrict-null-sentinel \ --Wunused-parameter -Wlogical-op \ --Wempty-body -Wsign-compare -Wclobbered -Wcast-align -Wcast-qual \ --Wtype-limits -Wpointer-arith -Wundef -Wmissing-include-dirs \ --Wignored-qualifiers -Winit-self -pedantic -Wall -ggdb3 -O2 -pipe \ --Wpacked -Wshadow -D_FORTIFY_SOURCE=2 \ --Wno-attributes" - -autoreconf -i -./configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man - -cd po -#make -j16 update-po 2>../build/make1.log -make -j16 update-gmo 2>../build/make1.log -cd .. -make -j16 2>build/make2.log - diff --git a/build/bmake45 b/build/bmake45 deleted file mode 100755 index d02db1dd2..000000000 --- a/build/bmake45 +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/sh - -cd .. - -#may be -#-Waggregate-return -Winline - -#for feature -#-Wstrict-overflow=4 -Wfloat-equal -#-Wunsafe-loop-optimizations -#-Woverloaded-virtual -#-Wformat=2 -#-Wswitch-enum - -#for better code -# -Weffc++ - -#need fix: -Wold-style-cast -Wconversion -#prof -pg - -dir=`pwd` - -export CC=gcc-4.5 -export CXX=g++-4.5 - -export LANG=C -export CXXFLAGS="-Wunreachable-code -Wmissing-field-initializers \ --Wabi -Wdisabled-optimization -Wuninitialized \ --Wvolatile-register-var -Winvalid-pch -Wredundant-decls \ --Wnormalized=nfkc -Wmissing-format-attribute -Wmissing-noreturn \ --Wswitch-default -Wsign-promo -Waddress -Wmissing-declarations \ --Wctor-dtor-privacy -Wstrict-null-sentinel \ --Wunused-parameter -Wlogical-op \ --Wempty-body -Wsign-compare -Wclobbered -Wcast-align -Wcast-qual \ --Wtype-limits -Wpointer-arith -Wundef -Wmissing-include-dirs \ --Wignored-qualifiers -Winit-self -pedantic -Wall -ggdb3 -O2 -pipe \ --Wpacked -Wshadow -Wunused -Wsynth \ --Wbuiltin-macro-redefined -Wctor-dtor-privacy -Wdeprecated -Wextra \ --Wendif-labels -Wformat=1 -Wimport -Wnon-virtual-dtor -Wpsabi \ --Wsign-promo -Wwrite-strings -D_FORTIFY_SOURCE=2 \ --Wno-attributes" - -autoreconf -i -./configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man \ ---enable-memdebug=yes \ ---enable-tcmalloc=no \ ---enable-googleprofiler=no - -#--enable-applebuild=yes -#--without-librt - -cd po -#make -j16 update-po 2>../make1.log -make -j16 update-gmo 2>../build/make1.log -cd .. -make -j16 2>build/make2.log - diff --git a/build/bmake46 b/build/bmake46 deleted file mode 100755 index 1c3082297..000000000 --- a/build/bmake46 +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/sh - -cd .. - -#may be -#-Wshadow -Waggregate-return -Winline - -#for feature -#-Wstrict-overflow=4 -Wfloat-equal -#-Wunsafe-loop-optimizations -#-Wnon-virtual-dtor -#-Woverloaded-virtual -#-Wformat=2 -#-Wswitch-enum -#-Werror - -#for better code -# -Weffc++ - -#from time to time fix: -Wold-style-cast -Wconversion -Wswitch-enum -Waggregate-return -#from time to time fix: -Winline -Woverloaded-virtual -#need fix: -Wsuggest-attribute=pure -Wsuggest-attribute=const -#need fix: -Wstrict-overflow=5 -fstrict-overflow -#need fix: -Wstrict-aliasing=3 -#need fix: -Wdouble-promotion -#need fix: -Wfloat-equal -#need fix: -Wunsafe-loop-optimizations -#need fix: -Wpadded -#need fix: -Wsign-conversion -#prof -pg - -dir=`pwd` - -export CC=gcc-4.6 -export CXX=g++-4.6 - -export LANG=C - -export CXXFLAGS="-Wvariadic-macros -Wvla -Wredundant-decls \ --Wpacked-bitfield-compat -Wcast-qual -Wtrampolines \ --Wsuggest-attribute=noreturn -Wunused -Wstrict-aliasing=2 \ --fstrict-aliasing -Wunreachable-code -Wabi -Wdisabled-optimization \ --Wvolatile-register-var -Winvalid-pch -Wredundant-decls \ --Wnormalized=nfkc -Wmissing-format-attribute -Wmissing-noreturn \ --Wswitch-default -Wsign-promo -Waddress -Wmissing-declarations \ --Wctor-dtor-privacy -Wstrict-null-sentinel -Wlogical-op \ --Wcast-align -Wcast-qual -Wpointer-arith -Wundef \ --Wmissing-include-dirs -Winit-self -pedantic -Wall -ggdb3 -O2 -pipe \ --Wpacked -Wextra -Wstrict-overflow=1 -Wunknown-pragmas -Wwrite-strings \ --Wstack-protector -Wshadow -Wunused -Wunused-macros -Wsynth \ --Wbuiltin-macro-redefined -Wctor-dtor-privacy -Wdeprecated -Wextra \ --Wendif-labels -Wformat=1 -Wimport -Wnon-virtual-dtor -Wpsabi \ --Wsign-promo -Wwrite-strings -D_FORTIFY_SOURCE=2 -Wc++17-compat \ --Wno-attributes" - -autoreconf -i -./configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man \ ---enable-memdebug=no \ ---enable-tcmalloc=no \ ---enable-googleprofiler=no - -cd po -#make -j16 update-po 2>../build/make1.log -make -j16 update-gmo 2>../build/make1.log -cd .. -make -j16 2>build/make2.log - diff --git a/build/bmakedebug b/build/bmakedebug deleted file mode 100755 index c80315be1..000000000 --- a/build/bmakedebug +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash - -mkdir tmp - -cd .. -dir=`pwd` - -export CCACHE_DIR="${dir}/build/ccache/bmakedebug" -export CC="ccache gcc" -export CXX="ccache g++" -export LANG=C - -export CXXFLAGS="-pedantic -ggdb3 -O3 -pipe -ffast-math \ --D_FORTIFY_SOURCE=2 -D_GLIBCXX_SANITIZE_VECTOR \ --fno-omit-frame-pointer \ --fsanitize=address -fsanitize=undefined \ --fsanitize=shift -fsanitize=integer-divide-by-zero -fsanitize=unreachable \ --fsanitize=vla-bound -fsanitize=null -fsanitize=return \ --fsanitize=signed-integer-overflow -fsanitize=bounds -fsanitize=alignment \ --fsanitize=object-size -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow \ --fsanitize=nonnull-attribute -fsanitize=returns-nonnull-attribute -fsanitize=bool \ --fsanitize=enum -fsanitize=vptr -fsanitize=bounds-strict \ --fsanitize=pointer-compare -fsanitize=pointer-subtract -fsanitize=builtin -fsanitize=pointer-overflow \ --std=gnu++2a \ --fno-var-tracking -Wno-attributes" - -source ./tools/ci/flags/gcc10.sh - -autoreconf -i -cd build/tmp - -../../configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man \ ---enable-memdebug=no \ ---enable-tcmalloc=no \ ---enable-googleprofiler=no \ ---enable-checks=yes \ ---enable-werror - -cd po -make -j16 update-gmo 2>../../make1.log -cd .. -make -j16 2>../make2.log - diff --git a/build/bmakedebugsdl2 b/build/bmakedebugsdl2 deleted file mode 100755 index 3112e9563..000000000 --- a/build/bmakedebugsdl2 +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/bash - -mkdir tmp - -cd .. -dir=`pwd` - -export CCACHE_DIR="${dir}/build/ccache/bmakedebugsdl2" -export CC="ccache gcc" -export CXX="ccache g++" -export LANG=C - -export CXXFLAGS="-pedantic -ggdb3 -O3 -pipe -ffast-math \ --D_FORTIFY_SOURCE=2 -D_GLIBCXX_SANITIZE_VECTOR \ --fno-omit-frame-pointer \ --fsanitize=address -fsanitize=undefined \ --fsanitize=shift -fsanitize=integer-divide-by-zero -fsanitize=unreachable \ --fsanitize=vla-bound -fsanitize=null -fsanitize=return \ --fsanitize=signed-integer-overflow -fsanitize=bounds -fsanitize=alignment \ --fsanitize=object-size -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow \ --fsanitize=nonnull-attribute -fsanitize=returns-nonnull-attribute -fsanitize=bool \ --fsanitize=enum -fsanitize=vptr \ --fsanitize=pointer-compare -fsanitize=pointer-subtract -fsanitize=builtin -fsanitize=pointer-overflow \ --std=gnu++2a \ --fno-var-tracking -Wno-attributes" - -source ./tools/ci/flags/gcc10.sh - -autoreconf -i -cd build/tmp - -../../configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man \ ---enable-memdebug=no \ ---enable-tcmalloc=no \ ---enable-googleprofiler=no \ ---enable-checks=yes \ ---with-sdl2 \ ---enable-werror - -cd po -make -j16 update-gmo 2>../../make1.log -cd .. -make -j16 2>../make2.log - diff --git a/build/bmakemem b/build/bmakemem deleted file mode 100755 index 1acaa46da..000000000 --- a/build/bmakemem +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -mkdir tmp -cd .. - -dir=`pwd` - -export CCACHE_DIR="${dir}/build/ccache/bmakemem" -export CC="ccache gcc" -export CXX="ccache g++" - -export LANG=C - -export CXXFLAGS="-pedantic -ggdb3 -O3 -pipe -ffast-math \ --D_FORTIFY_SOURCE=2 \ --std=gnu++2a \ --fno-var-tracking -Wno-attributes" - -source ./tools/ci/flags/gcc8.sh - -export CXXFLAGS="$CXXFLAGS -Wno-null-dereference" - -autoreconf -i -cd build/tmp -../../configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man \ ---enable-memdebug=yes \ ---enable-tcmalloc=no \ ---enable-googleprofiler=no \ ---enable-werror - -cd po -make -j16 update-gmo 2>../../make1.log -cd .. -make -j16 2>../make2.log - diff --git a/build/bmakespeed b/build/bmakespeed deleted file mode 100755 index 9f091ac9e..000000000 --- a/build/bmakespeed +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -mkdir tmp -cd .. - -dir=`pwd` - -export CCACHE_DIR="${dir}/build/ccache/bmakespeed" -export CC="ccache gcc" -export CXX="ccache g++" -export LANG=C - -export CXXFLAGS="-pedantic -ggdb3 -O5 -pipe -ffast-math \ --funswitch-loops \ --D_FORTIFY_SOURCE=2 \ --funsafe-loop-optimizations -flto -fwhole-program \ --march=native -fsched-pressure \ --std=gnu++2a \ --fno-var-tracking -Wno-attributes" - -source ./tools/ci/flags/gcc8.sh - -autoreconf -i -cd build/tmp -../../configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man - -cd po -make -j16 update-gmo 2>../../make1.log -cd .. -make -j16 2>../make2.log - diff --git a/build/bmakestl b/build/bmakestl deleted file mode 100755 index fa87762f1..000000000 --- a/build/bmakestl +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -mkdir tmp -cd .. - -dir=`pwd` - -export CCACHE_DIR="${dir}/build/ccache/bmake" -export CC="ccache gcc" -export CXX="ccache g++" - -export LANG=C - -export CXXFLAGS="-pedantic -ggdb3 -O3 -pipe -ffast-math \ --D_FORTIFY_SOURCE=2 \ --std=gnu++2a \ --fno-var-tracking -Wno-attributes" - -source ./tools/ci/flags/gcc8.sh - -export CXXFLAGS="$CXXFLAGS -Wno-null-dereference" - -autoreconf -i -cd build/tmp -../../configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man \ ---enable-stldebug=yes \ ---enable-memdebug=no \ ---enable-tcmalloc=no \ ---enable-googleprofiler=no \ ---enable-werror - -cd po -make -j16 update-gmo 2>../../make1.log -cd .. -make -j16 2>../make2.log - diff --git a/build/bmaketest b/build/bmaketest deleted file mode 100755 index 153887625..000000000 --- a/build/bmaketest +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash - -cd .. - -dir=`pwd` - -export CC=gcc -export CXX=g++ - -export LANG=C - -export CXXFLAGS="-pedantic -ggdb3 -O3 -pipe -ffast-math \ --D_FORTIFY_SOURCE=2 \ --std=gnu++2a \ --fno-var-tracking -Wno-attributes" - -source ./tools/ci/flags/gcc8.sh - -autoreconf -i -./configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man \ ---enable-unittests=doctest - -cd po -make -j16 update-gmo 2>../build/make1.log -cd .. -make -j16 check 2>build/make2.log diff --git a/build/bmaketestsimd b/build/bmaketestsimd deleted file mode 100755 index 41f07e679..000000000 --- a/build/bmaketestsimd +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/bash - -cd .. - -dir=`pwd` - -export CC=gcc -export CXX=g++ - -export LANG=C - -export CXXFLAGS="-pedantic -ggdb3 -O5 -pipe -Wstrict-aliasing=2 \ --Wstrict-overflow=1 -Wformat=1 -D_FORTIFY_SOURCE=2 \ --ffast-math -funswitch-loops -flto -fwhole-program \ --funsafe-loop-optimizations \ --march=native -fsched-pressure --std=gnu++2a -Wformat=1 \ --fno-var-tracking -Wno-attributes" - -source ./tools/ci/flags/gcc8.sh - -autoreconf -i -./configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man \ ---enable-unittests - -cd po -make -j16 update-gmo 2>../build/make1.log -cd .. -make -j16 check 2>build/make2.log diff --git a/build/dcmake b/build/dcmake deleted file mode 100755 index 889a208dd..000000000 --- a/build/dcmake +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -cd .. - -export PATH=/home/mingw/cross/i686-w64-mingw32/bin:/home/mingw/cross/bin:$PATH -export CXXFLAGS="-Wall -g1 -O2 -ffast-math -std=gnu++0x -funswitch-loops -funsafe-loop-optimizations -Wno-attributes" -cmake -DCMAKE_TOOLCHAIN_FILE=build/toolchain.cmake . 2>build/make1.log - -make -j16 VERBOSE=1 2>>build/make.log - diff --git a/build/fink.sh b/build/fink.sh deleted file mode 100755 index 8c74de65a..000000000 --- a/build/fink.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - -cd .. - -FINKDIR=/sw -GCCVER=4.0 - -. ${FINKDIR}/bin/init.sh -export CC=gcc-${GCCVER} -export CXX=g++-${GCCVER} -export CPP=cpp-${GCCVER} -export CXXCPP=cpp-${GCCVER} -export CPPFLAGS="-I/sw/include" -export LDFLAGS="-framework OpenGL" -dir=`pwd`/run -#dir=${FINKDIR} - -autoreconf -i 2>build/fink1.log - -# with prefix -#./configure --enable-applebuild=yes \ -#--prefix=${dir} \ -#--datadir=${dir}/share/games \ -#--bindir=${dir}/bin \ -#--mandir=${dir}/share/man 2>fink2.log 1>fink2_ok.log - -# without prefix -./configure --enable-applebuild=yes \ ---datarootdir=${dir}/share/games \ ---bindir=${dir}/bin \ ---sbindir=${dir}/bin \ ---mandir=${dir}/share/man 2>build/fink2.log - -# simple -#./configure --enable-applebuild=yes 2>fink2.log 1>fink2_ok.log -make 2>build/fink3.log diff --git a/build/makeflawfinder b/build/makeflawfinder deleted file mode 100755 index 9b5ff2809..000000000 --- a/build/makeflawfinder +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -flawfinder ../src 1> makeflawfinder.log -rats ../src 1> makerats.log diff --git a/build/makegprof b/build/makegprof deleted file mode 100755 index 967238b8e..000000000 --- a/build/makegprof +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -mv ../run/gmon.out . -gprof ../run/bin/manaplus >gprof.txt -gprof --inline-file-names ../run/bin/manaplus >gprofi.txt -gprof2dot.py <gprof.txt >gprof.dot -dot -Tpng -o gprof.png <gprof.dot diff --git a/build/mclean b/build/mclean deleted file mode 100755 index 1109630cb..000000000 --- a/build/mclean +++ /dev/null @@ -1,17 +0,0 @@ -rm -rf tmp -cd .. -make distclean -make clean -find src -type f -name "*.gcno" -exec rm {} \; -find src -type f -name "*.gcda" -exec rm {} \; -find src -type f -name "*.o" -exec rm {} \; -find src -type f -name "Makefile" -exec rm {} \; -find src -type f -name "Makefile.in" -exec rm {} \; -rm configure -rm configure.in -rm Makefile -rm Makefile.in -rm aclocal.m4 -rm -r autom4te.cache -rm config.* -rm depcomp diff --git a/build/minst b/build/minst deleted file mode 100755 index 2d809e288..000000000 --- a/build/minst +++ /dev/null @@ -1,2 +0,0 @@ -cd tmp -make install diff --git a/build/packtmw b/build/packtmw deleted file mode 100755 index f6d78be34..000000000 --- a/build/packtmw +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -cd .. - -dir=`pwd` - -cd packaging/windows -./make-translations.sh -makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="1.0" \ - -DEXESUFFIX=/src \ - -DUPX=true \ - -DBITS=${BITS} \ - -DSEHDLL=${SEHDLL} \ - tmw.nsi diff --git a/build/packwin b/build/packwin deleted file mode 100755 index e92e0dc2e..000000000 --- a/build/packwin +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -cd .. - -dir=`pwd` - -cd packaging/windows -./make-translations.sh -makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="1.0" \ - -DEXESUFFIX=/src \ - -DUPX=true \ - -DBITS=${BITS} \ - -DSEHDLL=${SEHDLL} \ - setup.nsi - diff --git a/build/pcmake b/build/pcmake deleted file mode 100755 index bc1d82061..000000000 --- a/build/pcmake +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -cd .. - -export PATH=/home/mingw/cross/i686-w64-mingw32/bin:/home/mingw/cross/bin:$PATH -export CXXFLAGS="-Wall -g1 -O2 -pg -ffast-math -std=gnu++0x -Wno-attributes" -cmake -DCMAKE_TOOLCHAIN_FILE=build/toolchain.cmake . 2>build/make1.log - -make -j16 VERBOSE=1 2>>build/make.log - diff --git a/build/pmake b/build/pmake deleted file mode 100755 index d710cb8b2..000000000 --- a/build/pmake +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash - -mkdir tmp -cd .. - -dir=`pwd` - -export CCACHE_DIR="${dir}/build/ccache/pmake" -export CC="ccache gcc" -export CXX="ccache g++" - -export LANG=C - -export CXXFLAGS="-g -pg -fno-inline -fno-omit-frame-pointer" - -autoreconf -i -cd build/tmp -../../configure --prefix=$dir/run \ ---datadir=$dir/run/share/games \ ---bindir=$dir/run/bin \ ---mandir=$dir/run/share/man - -cd po -make -j16 update-gmo 2>../../make1.log -cd .. -make -j16 2>../make2.log - diff --git a/build/pmake46 b/build/pmake46 deleted file mode 100755 index 9512ac127..000000000 --- a/build/pmake46 +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -cd .. - -dir=`pwd` - -export CC=gcc-4.6 -export CXX=g++-4.6 - -#-D_GLIBCXX_PROFILE - -export LANG=C -export CXXFLAGS="-pg -fno-inline -Wunreachable-code -Wmissing-field-initializers \ --Wabi -Wdisabled-optimization -Wuninitialized \ --Wvolatile-register-var -Winvalid-pch -Wredundant-decls \ --Wnormalized=nfkc -Wmissing-format-attribute -Wmissing-noreturn \ --Wswitch-default -Wsign-promo -Waddress -Wmissing-declarations \ --Wctor-dtor-privacy -Wstrict-null-sentinel \ --Wunused-parameter -Wredundant-decls -Wlogical-op \ --Wempty-body -Wsign-compare -Wclobbered -Wcast-align -Wcast-qual \ --Wtype-limits -Wpointer-arith -Wundef -Wmissing-include-dirs \ --Wignored-qualifiers -Winit-self -pedantic -Wall -ggdb3 -O2 -pipe \ --Wno-attributes" - -autoreconf -i -./configure --prefix=$dir/run \ - --datadir=$dir/run/share/games \ - --bindir=$dir/run/bin \ - --mandir=$dir/run/share/man - -make -j16 2>build/make.log - diff --git a/build/testfile.sh b/build/testfile.sh deleted file mode 100755 index 82393caf7..000000000 --- a/build/testfile.sh +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/bash - -cd ../src - -export includes="-I. -I/usr/include -I/usr/include/SDL -I/usr/include/libxml2" -export LOGFILE="../build/testfile.log" - -function run { - export CXX="g++" - - export CMD="$CXX -c $1 $2 $3" - echo $CMD >>${LOGFILE} - $CMD 2>>${LOGFILE} - - export CMD="$CXX -c -std=gnu++1z $1 $2 $3" - $CMD 2>>${LOGFILE} - - ../../deheader/deheader -q -i "\"debug.h\"" \ - -i "\"utils/checkutils.h\"" \ - -i "\"utils/sdlcheckutils.h\"" \ - -i "\"sdlshared.h\"" \ - -i "\"localconsts.h\"" \ - -i "\"utils/fuzzer.h\"" \ - -i "\"$name\"" \ - -c "$CXX" \ - -d "$1" \ - -s "-std=gnu++1z" \ - -m "-c -Werror -Wall -Wextra -Wundef -Wmissing-declarations -DLOCALEDIR=\\\"\\\" $2" $3 \ - | grep -v "portability requires" >> ${LOGFILE} - - echo ---------------------------- >>${LOGFILE} -} - -echo >${LOGFILE} - -run "-DENABLE_LIBXML" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_OPENGL" "$includes" "$1" -run "-DENABLE_LIBXML -DENABLE_NLS" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT -DUSE_OPENGL" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT -DUSE_X11" "$includes" "$1" - -run "-DENABLE_PUGIXML" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_OPENGL" "$includes" "$1" -run "-DENABLE_PUGIXML -DENABLE_NLS" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT -DUSE_OPENGL" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT -DUSE_X11" "$includes" "$1" - -export includes="-I. -I/usr/include -I/usr/include/SDL2 -I/usr/include/libxml2" - -run "-DENABLE_LIBXML -DUSE_SDL2" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DUSE_OPENGL" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DENABLE_NLS" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_X11" "$includes" "$1" - -run "-DENABLE_PUGIXML -DUSE_SDL2" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DUSE_OPENGL" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DENABLE_NLS" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_X11" "$includes" "$1" diff --git a/build/testfiledye.sh b/build/testfiledye.sh deleted file mode 100755 index 03dc1dfad..000000000 --- a/build/testfiledye.sh +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/bash - -cd ../src - -export includes="-I. -I/usr/include -I/usr/include/SDL -I/usr/include/libxml2" -export LOGFILE="../build/testfile.log" - -function run { - export CXX="g++" - - export CMD="$CXX -c $1 $2 $3" - echo $CMD >>${LOGFILE} - $CMD 2>>${LOGFILE} - - export CMD="$CXX -c -std=gnu++1z $1 $2 $3" - $CMD 2>>${LOGFILE} - - ../../deheader/deheader -q -i "\"debug.h\"" \ - -i "\"utils/checkutils.h\"" \ - -i "\"utils/sdlcheckutils.h\"" \ - -i "\"sdlshared.h\"" \ - -i "\"localconsts.h\"" \ - -i "\"utils/fuzzer.h\"" \ - -i "\"$name\"" \ - -c "$CXX" \ - -d "$1" \ - -s "-std=gnu++1z" \ - -m "-c -Werror -Wall -Wextra -Wundef -Wmissing-declarations -DLOCALEDIR=\\\"\\\" $2" $3 \ - | grep -v "portability requires" >> ${LOGFILE} - - echo ---------------------------- >>${LOGFILE} -} - -echo >${LOGFILE} - -run "-DENABLE_LIBXML -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_OPENGL -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DENABLE_NLS -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT -DUSE_OPENGL -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11 -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT -DUSE_X11 -DDYECMD" "$includes" "$1" - -run "-DENABLE_PUGIXML -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_OPENGL -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DENABLE_NLS -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT -DUSE_OPENGL -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11 -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT -DUSE_X11 -DDYECMD" "$includes" "$1" - -export includes="-I. -I/usr/include -I/usr/include/SDL2 -I/usr/include/libxml2" - -run "-DENABLE_LIBXML -DUSE_SDL2 -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DUSE_OPENGL -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DENABLE_NLS -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11 -DDYECMD" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_X11 -DDYECMD" "$includes" "$1" - -run "-DENABLE_PUGIXML -DUSE_SDL2 -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DUSE_OPENGL -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DENABLE_NLS -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11 -DDYECMD" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_X11 -DDYECMD" "$includes" "$1" diff --git a/build/testfiletest.sh b/build/testfiletest.sh deleted file mode 100755 index 40f08739a..000000000 --- a/build/testfiletest.sh +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/bash - -cd ../src - -export includes="-I. -I/usr/include -I/usr/include/SDL -I/usr/include/libxml2" -export LOGFILE="../build/testfile.log" - -function run { - export CXX="g++" - - export CMD="$CXX -c $1 $2 $3" - echo $CMD >>${LOGFILE} - $CMD 2>>${LOGFILE} - - export CMD="$CXX -c -std=gnu++1z $1 $2 $3" - $CMD 2>>${LOGFILE} - - ../../deheader/deheader -q -i "\"debug.h\"" \ - -i "\"utils/checkutils.h\"" \ - -i "\"utils/sdlcheckutils.h\"" \ - -i "\"sdlshared.h\"" \ - -i "\"localconsts.h\"" \ - -i "\"utils/fuzzer.h\"" \ - -i "\"$name\"" \ - -c "$CXX" \ - -d "$1" \ - -s "-std=gnu++1z" \ - -m "-c -Werror -Wall -Wextra -Wundef -Wmissing-declarations -DLOCALEDIR=\\\"\\\" $2" $3 \ - | grep -v "portability requires" >> ${LOGFILE} - - echo ---------------------------- >>${LOGFILE} -} - -echo >${LOGFILE} - -run "-DENABLE_LIBXML -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_OPENGL -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DENABLE_NLS -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT -DUSE_OPENGL -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11 -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DTMWA_SUPPORT -DUSE_X11 -DUNITTESTS" "$includes" "$1" - -run "-DENABLE_PUGIXML -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_OPENGL -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DENABLE_NLS -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT -DUSE_OPENGL -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11 -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DTMWA_SUPPORT -DUSE_X11 -DUNITTESTS" "$includes" "$1" - -export includes="-I. -I/usr/include -I/usr/include/SDL2 -I/usr/include/libxml2" - -run "-DENABLE_LIBXML -DUSE_SDL2 -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DUSE_OPENGL -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DENABLE_NLS -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11 -DUNITTESTS" "$includes" "$1" -run "-DENABLE_LIBXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_X11 -DUNITTESTS" "$includes" "$1" - -run "-DENABLE_PUGIXML -DUSE_SDL2 -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DUSE_OPENGL -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DENABLE_NLS -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_OPENGL -DUSE_X11 -DUNITTESTS" "$includes" "$1" -run "-DENABLE_PUGIXML -DUSE_SDL2 -DTMWA_SUPPORT -DUSE_X11 -DUNITTESTS" "$includes" "$1" diff --git a/build/toolchain.cmake b/build/toolchain.cmake deleted file mode 100644 index fab923a1f..000000000 --- a/build/toolchain.cmake +++ /dev/null @@ -1,35 +0,0 @@ -# the name of the target operating system -SET(CMAKE_SYSTEM_NAME Windows) - -# toolchain prefix, can be overridden by -DTOOLCHAIN=... -# IF (NOT TOOLCHAIN) -SET(TOOLCHAIN "i686-w64-mingw32-") -# ENDIF() - -# which compilers to use for C and C++ -SET(CMAKE_C_COMPILER ${TOOLCHAIN}gcc) -SET(CMAKE_CXX_COMPILER ${TOOLCHAIN}g++) -SET(CMAKE_RC_COMPILER ${TOOLCHAIN}windres) - -SET(CMAKE_INSTALL_PREFIX ./win) -SET(CMAKE_BUILD_TYPE None) -SET(CMAKE_C_FLAGS -O3 -Wall) -SET(CMAKE_CXX_FLAGS -O3 -Wall) - -SET(SDLIMAGE_INCLUDE_DIR ../libs/include/SDL) -SET(SDLMIXER_INCLUDE_DIR ../libs/include/SDL) -SET(SDLNET_INCLUDE_DIR ../libs/include/SDL) -SET(SDLTTF_INCLUDE_DIR ../libs/include/SDL) -SET(SDL_INCLUDE_DIR ../libs/include/SDL) -SET(ENABLE_MANASERV OFF) - -# here is the target environment located -SET(CMAKE_FIND_ROOT_PATH /home/mingw/cross/i686-w64-mingw32 /../libs/lib ) - -# adjust the default behaviour of the FIND_XXX() commands: -# search headers and libraries in the target environment, search -# programs in the host environment -set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) -set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) -set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) - diff --git a/build/toolchain.nightly b/build/toolchain.nightly deleted file mode 100644 index fab923a1f..000000000 --- a/build/toolchain.nightly +++ /dev/null @@ -1,35 +0,0 @@ -# the name of the target operating system -SET(CMAKE_SYSTEM_NAME Windows) - -# toolchain prefix, can be overridden by -DTOOLCHAIN=... -# IF (NOT TOOLCHAIN) -SET(TOOLCHAIN "i686-w64-mingw32-") -# ENDIF() - -# which compilers to use for C and C++ -SET(CMAKE_C_COMPILER ${TOOLCHAIN}gcc) -SET(CMAKE_CXX_COMPILER ${TOOLCHAIN}g++) -SET(CMAKE_RC_COMPILER ${TOOLCHAIN}windres) - -SET(CMAKE_INSTALL_PREFIX ./win) -SET(CMAKE_BUILD_TYPE None) -SET(CMAKE_C_FLAGS -O3 -Wall) -SET(CMAKE_CXX_FLAGS -O3 -Wall) - -SET(SDLIMAGE_INCLUDE_DIR ../libs/include/SDL) -SET(SDLMIXER_INCLUDE_DIR ../libs/include/SDL) -SET(SDLNET_INCLUDE_DIR ../libs/include/SDL) -SET(SDLTTF_INCLUDE_DIR ../libs/include/SDL) -SET(SDL_INCLUDE_DIR ../libs/include/SDL) -SET(ENABLE_MANASERV OFF) - -# here is the target environment located -SET(CMAKE_FIND_ROOT_PATH /home/mingw/cross/i686-w64-mingw32 /../libs/lib ) - -# adjust the default behaviour of the FIND_XXX() commands: -# search headers and libraries in the target environment, search -# programs in the host environment -set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) -set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) -set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) - diff --git a/build/update-creator.sh b/build/update-creator.sh deleted file mode 100755 index f3fc9e28c..000000000 --- a/build/update-creator.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -cd .. - -find -name \*.cpp \ - -o -name \*.h \ - -o -name \*.am \ - -o -name \*.txt \ - -o -name \*.xml \ - -o -name \*.manaplus \ - | sort > manaplus.files diff --git a/build/win_make b/build/win_make deleted file mode 100755 index 6e7adb83c..000000000 --- a/build/win_make +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -source ./winvars.sh || exit 1 - -mkdir tmp -cd .. - -dir=`pwd` - -autoreconf -i || exit 1 -cd build/tmp -../../configure \ ---host=${CROSS} \ ---enable-werror || exit 1 - -make -j16 2>../make2.log || exit 1 diff --git a/build/win_tests b/build/win_tests deleted file mode 100755 index 97db23361..000000000 --- a/build/win_tests +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -source ./winvars.sh || exit 1 - -mkdir tmp -cd .. - -dir=`pwd` - -autoreconf -i || exit 1 -cd build/tmp - -../../configure \ ---host=${CROSS} \ ---enable-unittests || exit 1 - -make check -j16 2>../make2.log || exit 1 diff --git a/build/winmake b/build/winmake deleted file mode 100755 index f52e57e2b..000000000 --- a/build/winmake +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -export CROSS="i686-w64-mingw32.shared" -export CXXFLAGS="-Wall -g1 -O5 -ffast-math -std=gnu++1z -funswitch-loops -funsafe-loop-optimizations -pipe" -source ../tools/ci/flags/mingw6.sh - -./win_make diff --git a/build/winmake64 b/build/winmake64 deleted file mode 100755 index a38b3ff96..000000000 --- a/build/winmake64 +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -export CROSS="x86_64-w64-mingw32.shared" -export CXXFLAGS="-Wall -g1 -O5 -ffast-math -std=gnu++1z -funswitch-loops -funsafe-loop-optimizations -pipe" -source ../tools/ci/flags/mingw6.sh - -./win_make diff --git a/build/wintests b/build/wintests deleted file mode 100755 index d46b7ac67..000000000 --- a/build/wintests +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -export CROSS="i686-w64-mingw32.shared" -export CXXFLAGS="-Wall -g1 -O5 -ffast-math -std=gnu++1z -funswitch-loops -funsafe-loop-optimizations -pipe" -./win_tests diff --git a/build/wintests64 b/build/wintests64 deleted file mode 100755 index 06e4f5cff..000000000 --- a/build/wintests64 +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -export CROSS="x86_64-w64-mingw32.shared" -export CXXFLAGS="-Wall -g1 -O5 -ffast-math -std=gnu++1z -funswitch-loops -funsafe-loop-optimizations -pipe" -./win_tests diff --git a/cmakepresets.json b/cmakepresets.json new file mode 100644 index 000000000..70e27e919 --- /dev/null +++ b/cmakepresets.json @@ -0,0 +1,12 @@ +{
+ "version": 3,
+ "configurePresets": [
+ {
+ "name": "default",
+ "generator": "Ninja",
+ "cacheVariables": {
+ "USE_SDL2": "ON"
+ }
+ }
+ ]
+}
diff --git a/msys_env.patch b/msys_env.patch new file mode 100644 index 000000000..cbc370fa3 --- /dev/null +++ b/msys_env.patch @@ -0,0 +1,27 @@ +diff --git a/src/utils/env.cpp b/src/utils/env.cpp +index 10feebca78..8f5f6f5f43 100644 +--- a/src/utils/env.cpp ++++ b/src/utils/env.cpp +@@ -54,21 +54,21 @@ void updateEnv() + default: + break; + } + #endif // WIN32 + } + + void setEnv(const char *const name, const char *const value) + { + if ((name == nullptr) || (value == nullptr)) + return; +-#ifdef WIN32 ++#if defined(_WIN32) || defined(__MSYS__) + if (putenv(const_cast<char*>((std::string(name) + + "=" + value).c_str()))) + #else // WIN32 + + if (setenv(name, value, 1) != 0) + #endif // WIN32 + { + logger->log("setenv failed: %s=%s", name, value); + } + } diff --git a/out/build/default/.cmake/api/v1/query/client-vscode/query.json b/out/build/default/.cmake/api/v1/query/client-vscode/query.json new file mode 100644 index 000000000..82bb96424 --- /dev/null +++ b/out/build/default/.cmake/api/v1/query/client-vscode/query.json @@ -0,0 +1 @@ +{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1},{"kind":"cmakeFiles","version":1}]}
\ No newline at end of file diff --git a/out/build/default/.cmake/api/v1/reply/cache-v2-99b7edfe565710057e5e.json b/out/build/default/.cmake/api/v1/reply/cache-v2-99b7edfe565710057e5e.json new file mode 100644 index 000000000..6dde3d03c --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/cache-v2-99b7edfe565710057e5e.json @@ -0,0 +1,5463 @@ +{
+ "entries" :
+ [
+ {
+ "name" : "CMAKE_ADDR2LINE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/addr2line.exe"
+ },
+ {
+ "name" : "CMAKE_AR",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/ar.exe"
+ },
+ {
+ "name" : "CMAKE_BUILD_TYPE",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_CACHEFILE_DIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "This is the directory where this CMakeCache.txt was created"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "c:/msys64/home/laptop/verse/out/build/default"
+ },
+ {
+ "name" : "CMAKE_CACHE_MAJOR_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Major version of cmake used to create the current loaded cache"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "4"
+ },
+ {
+ "name" : "CMAKE_CACHE_MINOR_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Minor version of cmake used to create the current loaded cache"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "0"
+ },
+ {
+ "name" : "CMAKE_CACHE_PATCH_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Patch version of cmake used to create the current loaded cache"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "3"
+ },
+ {
+ "name" : "CMAKE_COMMAND",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to CMake executable."
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/bin/cmake.exe"
+ },
+ {
+ "name" : "CMAKE_CPACK_COMMAND",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to cpack program executable."
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/bin/cpack.exe"
+ },
+ {
+ "name" : "CMAKE_CTEST_COMMAND",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to ctest program executable."
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/bin/ctest.exe"
+ },
+ {
+ "name" : "CMAKE_CXX_COMPILER",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "CXX compiler"
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/c++.exe"
+ },
+ {
+ "name" : "CMAKE_CXX_COMPILER_AR",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler"
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/gcc-ar.exe"
+ },
+ {
+ "name" : "CMAKE_CXX_COMPILER_RANLIB",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler"
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/gcc-ranlib.exe"
+ },
+ {
+ "name" : "CMAKE_CXX_FLAGS",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the CXX compiler during all build types."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_CXX_FLAGS_DEBUG",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the CXX compiler during DEBUG builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-g"
+ },
+ {
+ "name" : "CMAKE_CXX_FLAGS_MINSIZEREL",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the CXX compiler during MINSIZEREL builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-Os -DNDEBUG"
+ },
+ {
+ "name" : "CMAKE_CXX_FLAGS_RELEASE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the CXX compiler during RELEASE builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-O3 -DNDEBUG"
+ },
+ {
+ "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-O2 -g -DNDEBUG"
+ },
+ {
+ "name" : "CMAKE_CXX_STANDARD_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Libraries linked by default with all C++ applications."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32"
+ },
+ {
+ "name" : "CMAKE_C_COMPILER",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "C compiler"
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/cc.exe"
+ },
+ {
+ "name" : "CMAKE_C_COMPILER_AR",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler"
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/gcc-ar.exe"
+ },
+ {
+ "name" : "CMAKE_C_COMPILER_RANLIB",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler"
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/gcc-ranlib.exe"
+ },
+ {
+ "name" : "CMAKE_C_FLAGS",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the C compiler during all build types."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_C_FLAGS_DEBUG",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the C compiler during DEBUG builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-g"
+ },
+ {
+ "name" : "CMAKE_C_FLAGS_MINSIZEREL",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the C compiler during MINSIZEREL builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-Os -DNDEBUG"
+ },
+ {
+ "name" : "CMAKE_C_FLAGS_RELEASE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the C compiler during RELEASE builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-O3 -DNDEBUG"
+ },
+ {
+ "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the C compiler during RELWITHDEBINFO builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-O2 -g -DNDEBUG"
+ },
+ {
+ "name" : "CMAKE_C_STANDARD_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Libraries linked by default with all C applications."
+ }
+ ],
+ "type" : "STRING",
+ "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32"
+ },
+ {
+ "name" : "CMAKE_DLLTOOL",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/dlltool.exe"
+ },
+ {
+ "name" : "CMAKE_EXECUTABLE_FORMAT",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Executable file format"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "Unknown"
+ },
+ {
+ "name" : "CMAKE_EXE_LINKER_FLAGS",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during all build types."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during DEBUG builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during MINSIZEREL builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during RELEASE builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during RELWITHDEBINFO builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_EXPORT_BUILD_DATABASE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable/Disable output of build database during the build."
+ }
+ ],
+ "type" : "BOOL",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_EXPORT_COMPILE_COMMANDS",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable/Disable output of compile commands during generation."
+ }
+ ],
+ "type" : "BOOL",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_EXTRA_GENERATOR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Name of external makefile project generator."
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Value Computed by CMake."
+ }
+ ],
+ "type" : "STATIC",
+ "value" : "C:/msys64/home/laptop/verse/out/build/default/CMakeFiles/pkgRedirects"
+ },
+ {
+ "name" : "CMAKE_GENERATOR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Name of generator."
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "Ninja"
+ },
+ {
+ "name" : "CMAKE_GENERATOR_INSTANCE",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Generator instance identifier."
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_GENERATOR_PLATFORM",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Name of generator platform."
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_GENERATOR_TOOLSET",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Name of generator toolset."
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_GNUtoMS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Convert GNU import libraries to MS format (requires Visual Studio)"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "OFF"
+ },
+ {
+ "name" : "CMAKE_HOME_DIRECTORY",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Source directory with the top level CMakeLists.txt file for this project"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/home/laptop/verse"
+ },
+ {
+ "name" : "CMAKE_INSTALL_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Install path prefix, prepended onto install directories."
+ }
+ ],
+ "type" : "PATH",
+ "value" : "C:/Program Files (x86)/MANAPLUS"
+ },
+ {
+ "name" : "CMAKE_LINKER",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/ld.exe"
+ },
+ {
+ "name" : "CMAKE_LIST_FILE_NAME",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Name of CMakeLists files to read"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "CMakeLists.txt"
+ },
+ {
+ "name" : "CMAKE_MAKE_PROGRAM",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Program used to build from build.ninja files."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/ninja.exe"
+ },
+ {
+ "name" : "CMAKE_MODULE_LINKER_FLAGS",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of modules during all build types."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of modules during DEBUG builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of modules during RELEASE builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_NM",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/nm.exe"
+ },
+ {
+ "name" : "CMAKE_NUMBER_OF_MAKEFILES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "number of local generators"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "37"
+ },
+ {
+ "name" : "CMAKE_OBJCOPY",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/objcopy.exe"
+ },
+ {
+ "name" : "CMAKE_OBJDUMP",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/objdump.exe"
+ },
+ {
+ "name" : "CMAKE_PLATFORM_INFO_INITIALIZED",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Platform information initialized"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "CMAKE_PROJECT_DESCRIPTION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Value Computed by CMake"
+ }
+ ],
+ "type" : "STATIC",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_PROJECT_HOMEPAGE_URL",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Value Computed by CMake"
+ }
+ ],
+ "type" : "STATIC",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_PROJECT_NAME",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Value Computed by CMake"
+ }
+ ],
+ "type" : "STATIC",
+ "value" : "MANAPLUS"
+ },
+ {
+ "name" : "CMAKE_RANLIB",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/ranlib.exe"
+ },
+ {
+ "name" : "CMAKE_RC_COMPILER",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "RC compiler"
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/windres.exe"
+ },
+ {
+ "name" : "CMAKE_RC_COMPILER_WORKS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "CMAKE_RC_FLAGS",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags for Windows Resource Compiler during all build types."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_RC_FLAGS_DEBUG",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags for Windows Resource Compiler during DEBUG builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_RC_FLAGS_MINSIZEREL",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_RC_FLAGS_RELEASE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags for Windows Resource Compiler during RELEASE builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_READELF",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/readelf.exe"
+ },
+ {
+ "name" : "CMAKE_ROOT",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to CMake installation."
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/share/cmake"
+ },
+ {
+ "name" : "CMAKE_SHARED_LINKER_FLAGS",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of shared libraries during all build types."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_SKIP_INSTALL_RPATH",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building."
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "NO"
+ },
+ {
+ "name" : "CMAKE_SKIP_RPATH",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "If set, runtime paths are not added when using shared libraries."
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "NO"
+ },
+ {
+ "name" : "CMAKE_STATIC_LINKER_FLAGS",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of static libraries during all build types."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds."
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "CMAKE_STRIP",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/strip.exe"
+ },
+ {
+ "name" : "CMAKE_TAPI",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "CMAKE_TAPI-NOTFOUND"
+ },
+ {
+ "name" : "CMAKE_VERBOSE_MAKEFILE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo."
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "FALSE"
+ },
+ {
+ "name" : "CPACK_BINARY_7Z",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable to build 7-Zip packages"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "OFF"
+ },
+ {
+ "name" : "CPACK_BINARY_IFW",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable to build IFW packages"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "OFF"
+ },
+ {
+ "name" : "CPACK_BINARY_INNOSETUP",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable to build Inno Setup packages"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "OFF"
+ },
+ {
+ "name" : "CPACK_BINARY_NSIS",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable to build NSIS packages"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "ON"
+ },
+ {
+ "name" : "CPACK_BINARY_NUGET",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable to build NuGet packages"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "OFF"
+ },
+ {
+ "name" : "CPACK_BINARY_WIX",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable to build WiX packages"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "OFF"
+ },
+ {
+ "name" : "CPACK_BINARY_ZIP",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable to build ZIP packages"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "OFF"
+ },
+ {
+ "name" : "CPACK_SOURCE_7Z",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable to build 7-Zip source packages"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "ON"
+ },
+ {
+ "name" : "CPACK_SOURCE_ZIP",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable to build ZIP source packages"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "ON"
+ },
+ {
+ "name" : "CURL_DIR",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "The directory containing a CMake configuration file for CURL."
+ }
+ ],
+ "type" : "PATH",
+ "value" : "C:/msys64/ucrt64/lib/cmake/CURL"
+ },
+ {
+ "name" : "ENABLE_NLS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable building of tranlations"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "ON"
+ },
+ {
+ "name" : "ENABLE_TMWA",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable tmwA support"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "ON"
+ },
+ {
+ "name" : "FIND_PACKAGE_MESSAGE_DETAILS_CURL",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Details about finding CURL"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "[C:/msys64/ucrt64/lib/cmake/CURL/CURLConfig.cmake][ ][v8.14.1()]"
+ },
+ {
+ "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Gettext",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Details about finding Gettext"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "[C:/msys64/ucrt64/bin/msgmerge.exe][C:/msys64/ucrt64/bin/msgfmt.exe][v0.25()]"
+ },
+ {
+ "name" : "FIND_PACKAGE_MESSAGE_DETAILS_LibXml2",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Details about finding LibXml2"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "[C:/msys64/ucrt64/lib/libxml2.dll.a][C:/msys64/ucrt64/include/libxml2][v2.12.10()]"
+ },
+ {
+ "name" : "FIND_PACKAGE_MESSAGE_DETAILS_OpenGL",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Details about finding OpenGL"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "[opengl32][ ][v()]"
+ },
+ {
+ "name" : "FIND_PACKAGE_MESSAGE_DETAILS_PNG",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Details about finding PNG"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "[C:/msys64/ucrt64/lib/libpng.dll.a][C:/msys64/ucrt64/include][v1.6.49()]"
+ },
+ {
+ "name" : "FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Details about finding PkgConfig"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "[C:/msys64/ucrt64/bin/pkg-config.exe][v2.5.1()]"
+ },
+ {
+ "name" : "FIND_PACKAGE_MESSAGE_DETAILS_ZLIB",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Details about finding ZLIB"
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "[C:/msys64/ucrt64/lib/libz.dll.a][C:/msys64/ucrt64/include][ ][v1.3.1()]"
+ },
+ {
+ "name" : "GETTEXT_MSGFMT_EXECUTABLE",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/msgfmt.exe"
+ },
+ {
+ "name" : "GETTEXT_MSGMERGE_EXECUTABLE",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/msgmerge.exe"
+ },
+ {
+ "name" : "LIBXML2_INCLUDE_DIR",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a file."
+ }
+ ],
+ "type" : "PATH",
+ "value" : "C:/msys64/ucrt64/include/libxml2"
+ },
+ {
+ "name" : "LIBXML2_LIBRARY",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libxml2.dll.a"
+ },
+ {
+ "name" : "LIBXML2_XMLLINT_EXECUTABLE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a program."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/xmllint.exe"
+ },
+ {
+ "name" : "LibIntl_LIBRARY",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libintl.dll.a"
+ },
+ {
+ "name" : "MANAPLUS_BINARY_DIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Value Computed by CMake"
+ }
+ ],
+ "type" : "STATIC",
+ "value" : "C:/msys64/home/laptop/verse/out/build/default"
+ },
+ {
+ "name" : "MANAPLUS_IS_TOP_LEVEL",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Value Computed by CMake"
+ }
+ ],
+ "type" : "STATIC",
+ "value" : "ON"
+ },
+ {
+ "name" : "MANAPLUS_SOURCE_DIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Value Computed by CMake"
+ }
+ ],
+ "type" : "STATIC",
+ "value" : "C:/msys64/home/laptop/verse"
+ },
+ {
+ "name" : "MINGW_INCLUDE_DIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a file."
+ }
+ ],
+ "type" : "PATH",
+ "value" : "C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "OPENGL_gl_LIBRARY",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "OpenGL library for win32"
+ }
+ ],
+ "type" : "STRING",
+ "value" : "opengl32"
+ },
+ {
+ "name" : "OPENGL_glu_LIBRARY",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "GLU library for win32"
+ }
+ ],
+ "type" : "STRING",
+ "value" : "glu32"
+ },
+ {
+ "name" : "PC_LIBXML_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/libxml2;-IC:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "PC_LIBXML_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_FOUND",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "PC_LIBXML_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "PC_LIBXML_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/libxml2;C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "PC_LIBXML_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lxml2"
+ },
+ {
+ "name" : "PC_LIBXML_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "PC_LIBXML_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "xml2"
+ },
+ {
+ "name" : "PC_LIBXML_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "PC_LIBXML_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_MODULE_NAME",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "libxml-2.0"
+ },
+ {
+ "name" : "PC_LIBXML_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64"
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/libxml2;-IC:/msys64/ucrt64/include;-DLIBXML_STATIC;-DLZMA_API_STATIC"
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-DLIBXML_STATIC;-DLZMA_API_STATIC"
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/libxml2;C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lxml2;-liconv;-lws2_32;-lz;-llzma"
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "xml2;iconv;ws2_32;z;lzma"
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_STATIC_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "2.12.10"
+ },
+ {
+ "name" : "PC_LIBXML_libxml-2.0_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_libxml-2.0_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_libxml-2.0_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PC_LIBXML_libxml-2.0_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "PKG_CONFIG_ARGN",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Arguments to supply to pkg-config"
+ }
+ ],
+ "type" : "STRING",
+ "value" : ""
+ },
+ {
+ "name" : "PKG_CONFIG_EXECUTABLE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "pkg-config executable"
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/bin/pkg-config.exe"
+ },
+ {
+ "name" : "PNG_LIBRARY_DEBUG",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "PNG_LIBRARY_DEBUG-NOTFOUND"
+ },
+ {
+ "name" : "PNG_LIBRARY_RELEASE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libpng.dll.a"
+ },
+ {
+ "name" : "PNG_PNG_INCLUDE_DIR",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a file."
+ }
+ ],
+ "type" : "PATH",
+ "value" : "C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "SDL2GFX_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/SDL2;-IC:/msys64/ucrt64/include;-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2GFX_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2GFX_FOUND",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "SDL2GFX_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "SDL2GFX_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/SDL2;C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "SDL2GFX_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lSDL2_gfx;-lmingw32;-mwindows;-lSDL2main;-lSDL2"
+ },
+ {
+ "name" : "SDL2GFX_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows"
+ },
+ {
+ "name" : "SDL2GFX_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2GFX_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_gfx;mingw32;SDL2main;SDL2"
+ },
+ {
+ "name" : "SDL2GFX_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2GFX_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_MODULE_NAME",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_gfx"
+ },
+ {
+ "name" : "SDL2GFX_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64"
+ },
+ {
+ "name" : "SDL2GFX_SDL2_gfx_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_SDL2_gfx_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_SDL2_gfx_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_SDL2_gfx_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_STATIC_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/SDL2;-IC:/msys64/ucrt64/include;-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2GFX_STATIC_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_STATIC_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2GFX_STATIC_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/SDL2;C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "SDL2GFX_STATIC_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lSDL2_gfx;-lmingw32;-mwindows;-lSDL2main;-lSDL2;-lm;-lkernel32;-luser32;-lgdi32;-lwinmm;-limm32;-lole32;-loleaut32;-lversion;-luuid;-ladvapi32;-lsetupapi;-lshell32;-ldinput8"
+ },
+ {
+ "name" : "SDL2GFX_STATIC_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows"
+ },
+ {
+ "name" : "SDL2GFX_STATIC_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_STATIC_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_gfx;mingw32;SDL2main;SDL2;m;kernel32;user32;gdi32;winmm;imm32;ole32;oleaut32;version;uuid;advapi32;setupapi;shell32;dinput8"
+ },
+ {
+ "name" : "SDL2GFX_STATIC_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2GFX_STATIC_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_STATIC_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_STATIC_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_STATIC_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2GFX_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1.0.2"
+ },
+ {
+ "name" : "SDL2IMAGE_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/SDL2;-IC:/msys64/ucrt64/include;-Dmain=SDL_main;-IC:/msys64/ucrt64/include/libpng16;-DHWY_SHARED_DEFINE;-DLIBDEFLATE_DLL;-DAVIF_DLL;-IC:/msys64/ucrt64/include/rav1e;-IC:/msys64/ucrt64/include/svt-av1;-DEB_DLL;-IC:/msys64/ucrt64/include/webp"
+ },
+ {
+ "name" : "SDL2IMAGE_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main;-DHWY_SHARED_DEFINE;-DLIBDEFLATE_DLL;-DAVIF_DLL;-DEB_DLL"
+ },
+ {
+ "name" : "SDL2IMAGE_FOUND",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "SDL2IMAGE_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "SDL2IMAGE_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/SDL2;C:/msys64/ucrt64/include;C:/msys64/ucrt64/include/libpng16;C:/msys64/ucrt64/include/rav1e;C:/msys64/ucrt64/include/svt-av1;C:/msys64/ucrt64/include/webp"
+ },
+ {
+ "name" : "SDL2IMAGE_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lSDL2_image;-lmingw32;-mwindows;-lSDL2main;-lSDL2"
+ },
+ {
+ "name" : "SDL2IMAGE_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows"
+ },
+ {
+ "name" : "SDL2IMAGE_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2IMAGE_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_image;mingw32;SDL2main;SDL2"
+ },
+ {
+ "name" : "SDL2IMAGE_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2IMAGE_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_MODULE_NAME",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_image"
+ },
+ {
+ "name" : "SDL2IMAGE_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64"
+ },
+ {
+ "name" : "SDL2IMAGE_SDL2_image_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_SDL2_image_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_SDL2_image_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_SDL2_image_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/SDL2;-IC:/msys64/ucrt64/include;-Dmain=SDL_main;-IC:/msys64/ucrt64/include/libpng16;-DHWY_SHARED_DEFINE;-DLIBDEFLATE_DLL;-DAVIF_DLL;-IC:/msys64/ucrt64/include/rav1e;-IC:/msys64/ucrt64/include/svt-av1;-DEB_DLL;-IC:/msys64/ucrt64/include/webp;-DJXL_STATIC_DEFINE;-DJXL_CMS_STATIC_DEFINE;-DLZMA_API_STATIC;-DLERC_STATIC;-ULIBDEFLATE_DLL;-UAVIF_DLL;-UEB_DLL"
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main;-DHWY_SHARED_DEFINE;-DLIBDEFLATE_DLL;-DAVIF_DLL;-DEB_DLL;-DJXL_STATIC_DEFINE;-DJXL_CMS_STATIC_DEFINE;-DLZMA_API_STATIC;-DLERC_STATIC;-ULIBDEFLATE_DLL;-UAVIF_DLL;-UEB_DLL"
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/SDL2;C:/msys64/ucrt64/include;C:/msys64/ucrt64/include/libpng16;C:/msys64/ucrt64/include/rav1e;C:/msys64/ucrt64/include/svt-av1;C:/msys64/ucrt64/include/webp"
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lSDL2_image;-lmingw32;-mwindows;-lSDL2main;-lSDL2;-lm;-lkernel32;-luser32;-lgdi32;-lwinmm;-limm32;-lole32;-loleaut32;-lversion;-luuid;-ladvapi32;-lsetupapi;-lshell32;-ldinput8;-lpng16;-lz;-ljxl;-lm;-lstdc++;-lhwy;-lbrotlienc;-lbrotlidec;-lbrotlicommon;-ljxl_cms;-lm;-lstdc++;-llcms2;-llcms2_fast_float;-lm;-pthread;-ltiff;-ljbig;-lzstd;-llzma;-lLerc;-ljpeg;-ldeflate;-lz;-lavif;-lyuv;-ldav1d;-lrav1e;-lkernel32;-lntdll;-luserenv;-lws2_32;-ldbghelp;-lSvtAv1Enc;-laom;-lwebpdemux;-lwebp;-lsharpyuv"
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows;-pthread"
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_image;mingw32;SDL2main;SDL2;m;kernel32;user32;gdi32;winmm;imm32;ole32;oleaut32;version;uuid;advapi32;setupapi;shell32;dinput8;png16;z;jxl;m;stdc++;hwy;brotlienc;brotlidec;brotlicommon;jxl_cms;m;stdc++;lcms2;lcms2_fast_float;m;tiff;jbig;zstd;lzma;Lerc;jpeg;deflate;z;avif;yuv;dav1d;rav1e;kernel32;ntdll;userenv;ws2_32;dbghelp;SvtAv1Enc;aom;webpdemux;webp;sharpyuv"
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_STATIC_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2IMAGE_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "2.8.8"
+ },
+ {
+ "name" : "SDL2MIXER_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/SDL2;-IC:/msys64/ucrt64/include;-Dmain=SDL_main;-IC:/msys64/ucrt64/include/opus"
+ },
+ {
+ "name" : "SDL2MIXER_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2MIXER_FOUND",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "SDL2MIXER_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "SDL2MIXER_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/SDL2;C:/msys64/ucrt64/include;C:/msys64/ucrt64/include/opus"
+ },
+ {
+ "name" : "SDL2MIXER_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lSDL2_mixer;-lmingw32;-mwindows;-lSDL2main;-lSDL2"
+ },
+ {
+ "name" : "SDL2MIXER_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows"
+ },
+ {
+ "name" : "SDL2MIXER_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2MIXER_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_mixer;mingw32;SDL2main;SDL2"
+ },
+ {
+ "name" : "SDL2MIXER_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2MIXER_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_MODULE_NAME",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_mixer"
+ },
+ {
+ "name" : "SDL2MIXER_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64"
+ },
+ {
+ "name" : "SDL2MIXER_SDL2_mixer_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_SDL2_mixer_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_SDL2_mixer_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_SDL2_mixer_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/SDL2;-IC:/msys64/ucrt64/include;-Dmain=SDL_main;-IC:/msys64/ucrt64/include/opus"
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/SDL2;C:/msys64/ucrt64/include;C:/msys64/ucrt64/include/opus"
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lSDL2_mixer;-lwinmm;-lmingw32;-mwindows;-lSDL2main;-lSDL2;-lm;-lkernel32;-luser32;-lgdi32;-lwinmm;-limm32;-lole32;-loleaut32;-lversion;-luuid;-ladvapi32;-lsetupapi;-lshell32;-ldinput8;-lxmp;-lvorbisfile;-lvorbis;-lm;-lFLAC;-lm;-lssp;-lmpg123;-lshlwapi;-lopusfile;-logg;-lopus;-lm;-lwavpack;-lm"
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows"
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_mixer;winmm;mingw32;SDL2main;SDL2;m;kernel32;user32;gdi32;winmm;imm32;ole32;oleaut32;version;uuid;advapi32;setupapi;shell32;dinput8;xmp;vorbisfile;vorbis;m;FLAC;m;ssp;mpg123;shlwapi;opusfile;ogg;opus;m;wavpack;m"
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_STATIC_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2MIXER_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "2.8.1"
+ },
+ {
+ "name" : "SDL2NET_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/SDL2;-IC:/msys64/ucrt64/include;-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2NET_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2NET_FOUND",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "SDL2NET_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "SDL2NET_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/SDL2;C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "SDL2NET_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lSDL2_net;-lmingw32;-mwindows;-lSDL2main;-lSDL2"
+ },
+ {
+ "name" : "SDL2NET_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows"
+ },
+ {
+ "name" : "SDL2NET_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2NET_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_net;mingw32;SDL2main;SDL2"
+ },
+ {
+ "name" : "SDL2NET_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2NET_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_MODULE_NAME",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_net"
+ },
+ {
+ "name" : "SDL2NET_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64"
+ },
+ {
+ "name" : "SDL2NET_SDL2_net_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_SDL2_net_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_SDL2_net_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_SDL2_net_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_STATIC_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/SDL2;-IC:/msys64/ucrt64/include;-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2NET_STATIC_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_STATIC_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2NET_STATIC_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/SDL2;C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "SDL2NET_STATIC_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lSDL2_net;-lws2_32;-liphlpapi;-lmingw32;-mwindows;-lSDL2main;-lSDL2;-lm;-lkernel32;-luser32;-lgdi32;-lwinmm;-limm32;-lole32;-loleaut32;-lversion;-luuid;-ladvapi32;-lsetupapi;-lshell32;-ldinput8"
+ },
+ {
+ "name" : "SDL2NET_STATIC_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows"
+ },
+ {
+ "name" : "SDL2NET_STATIC_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_STATIC_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_net;ws2_32;iphlpapi;mingw32;SDL2main;SDL2;m;kernel32;user32;gdi32;winmm;imm32;ole32;oleaut32;version;uuid;advapi32;setupapi;shell32;dinput8"
+ },
+ {
+ "name" : "SDL2NET_STATIC_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2NET_STATIC_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_STATIC_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_STATIC_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_STATIC_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2NET_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "2.2.0"
+ },
+ {
+ "name" : "SDL2TTF_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/SDL2;-IC:/msys64/ucrt64/include;-Dmain=SDL_main;-IC:/msys64/ucrt64/include/freetype2;-IC:/msys64/ucrt64/include/libpng16;-IC:/msys64/ucrt64/include/harfbuzz;-IC:/msys64/ucrt64/include/glib-2.0;-IC:/msys64/ucrt64/lib/glib-2.0/include"
+ },
+ {
+ "name" : "SDL2TTF_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2TTF_FOUND",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "SDL2TTF_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "SDL2TTF_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/SDL2;C:/msys64/ucrt64/include;C:/msys64/ucrt64/include/freetype2;C:/msys64/ucrt64/include/libpng16;C:/msys64/ucrt64/include/harfbuzz;C:/msys64/ucrt64/include/glib-2.0;C:/msys64/ucrt64/lib/glib-2.0/include"
+ },
+ {
+ "name" : "SDL2TTF_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lSDL2_ttf;-lmingw32;-mwindows;-lSDL2main;-lSDL2"
+ },
+ {
+ "name" : "SDL2TTF_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows"
+ },
+ {
+ "name" : "SDL2TTF_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2TTF_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_ttf;mingw32;SDL2main;SDL2"
+ },
+ {
+ "name" : "SDL2TTF_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2TTF_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_MODULE_NAME",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_ttf"
+ },
+ {
+ "name" : "SDL2TTF_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64"
+ },
+ {
+ "name" : "SDL2TTF_SDL2_ttf_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_SDL2_ttf_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_SDL2_ttf_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_SDL2_ttf_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_STATIC_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include/SDL2;-IC:/msys64/ucrt64/include;-Dmain=SDL_main;-IC:/msys64/ucrt64/include/freetype2;-IC:/msys64/ucrt64/include/libpng16;-IC:/msys64/ucrt64/include/harfbuzz;-IC:/msys64/ucrt64/include/glib-2.0;-IC:/msys64/ucrt64/lib/glib-2.0/include"
+ },
+ {
+ "name" : "SDL2TTF_STATIC_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_STATIC_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2TTF_STATIC_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include/SDL2;C:/msys64/ucrt64/include;C:/msys64/ucrt64/include/freetype2;C:/msys64/ucrt64/include/libpng16;C:/msys64/ucrt64/include/harfbuzz;C:/msys64/ucrt64/include/glib-2.0;C:/msys64/ucrt64/lib/glib-2.0/include"
+ },
+ {
+ "name" : "SDL2TTF_STATIC_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lSDL2_ttf;-lmingw32;-mwindows;-lSDL2main;-lSDL2;-lm;-lkernel32;-luser32;-lgdi32;-lwinmm;-limm32;-lole32;-loleaut32;-lversion;-luuid;-ladvapi32;-lsetupapi;-lshell32;-ldinput8;-lfreetype;-lbz2;-lpng16;-lz;-lharfbuzz;-lm;-lusp10;-lgdi32;-lrpcrt4;-luser32;-ldwrite;-lglib-2.0;-lintl;-lws2_32;-lole32;-lwinmm;-lshlwapi;-luuid;-latomic;-lm;-lpcre2-8;-lgraphite2;-lbrotlidec;-lbrotlicommon"
+ },
+ {
+ "name" : "SDL2TTF_STATIC_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows"
+ },
+ {
+ "name" : "SDL2TTF_STATIC_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_STATIC_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "SDL2_ttf;mingw32;SDL2main;SDL2;m;kernel32;user32;gdi32;winmm;imm32;ole32;oleaut32;version;uuid;advapi32;setupapi;shell32;dinput8;freetype;bz2;png16;z;harfbuzz;m;usp10;gdi32;rpcrt4;user32;dwrite;glib-2.0;intl;ws2_32;ole32;winmm;shlwapi;uuid;atomic;m;pcre2-8;graphite2;brotlidec;brotlicommon"
+ },
+ {
+ "name" : "SDL2TTF_STATIC_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2TTF_STATIC_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_STATIC_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_STATIC_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_STATIC_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2TTF_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "2.24.0"
+ },
+ {
+ "name" : "SDL2_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include;-IC:/msys64/ucrt64/include/SDL2;-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2_FOUND",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "SDL2_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "SDL2_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include;C:/msys64/ucrt64/include/SDL2"
+ },
+ {
+ "name" : "SDL2_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lmingw32;-mwindows;-lSDL2main;-lSDL2"
+ },
+ {
+ "name" : "SDL2_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows"
+ },
+ {
+ "name" : "SDL2_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "mingw32;SDL2main;SDL2"
+ },
+ {
+ "name" : "SDL2_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_MODULE_NAME",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "sdl2"
+ },
+ {
+ "name" : "SDL2_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64"
+ },
+ {
+ "name" : "SDL2_STATIC_CFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-IC:/msys64/ucrt64/include;-IC:/msys64/ucrt64/include/SDL2;-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2_STATIC_CFLAGS_I",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_STATIC_CFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-Dmain=SDL_main"
+ },
+ {
+ "name" : "SDL2_STATIC_INCLUDE_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/include;C:/msys64/ucrt64/include/SDL2"
+ },
+ {
+ "name" : "SDL2_STATIC_LDFLAGS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-LC:/msys64/ucrt64/lib;-lmingw32;-mwindows;-lSDL2main;-lSDL2;-lm;-lkernel32;-luser32;-lgdi32;-lwinmm;-limm32;-lole32;-loleaut32;-lversion;-luuid;-ladvapi32;-lsetupapi;-lshell32;-ldinput8"
+ },
+ {
+ "name" : "SDL2_STATIC_LDFLAGS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "-mwindows"
+ },
+ {
+ "name" : "SDL2_STATIC_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_STATIC_LIBRARIES",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "mingw32;SDL2main;SDL2;m;kernel32;user32;gdi32;winmm;imm32;ole32;oleaut32;version;uuid;advapi32;setupapi;shell32;dinput8"
+ },
+ {
+ "name" : "SDL2_STATIC_LIBRARY_DIRS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ },
+ {
+ "name" : "SDL2_STATIC_LIBS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_STATIC_LIBS_L",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_STATIC_LIBS_OTHER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_STATIC_LIBS_PATHS",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "2.32.8"
+ },
+ {
+ "name" : "SDL2_sdl2_INCLUDEDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_sdl2_LIBDIR",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_sdl2_PREFIX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDL2_sdl2_VERSION",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : ""
+ },
+ {
+ "name" : "SDLIMAGE_INCLUDE_DIR",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "UNINITIALIZED",
+ "value" : ""
+ },
+ {
+ "name" : "SDLIMAGE_LIBRARY",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "UNINITIALIZED",
+ "value" : ""
+ },
+ {
+ "name" : "SDLMAIN_LIBRARY",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "UNINITIALIZED",
+ "value" : ""
+ },
+ {
+ "name" : "SDLMIXER_INCLUDE_DIR",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "UNINITIALIZED",
+ "value" : ""
+ },
+ {
+ "name" : "SDLMIXER_LIBRARY",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "UNINITIALIZED",
+ "value" : ""
+ },
+ {
+ "name" : "SDLNET_INCLUDE_DIR",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "UNINITIALIZED",
+ "value" : ""
+ },
+ {
+ "name" : "SDLNET_LIBRARY",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "UNINITIALIZED",
+ "value" : ""
+ },
+ {
+ "name" : "SDL_INCLUDE_DIR",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "UNINITIALIZED",
+ "value" : ""
+ },
+ {
+ "name" : "SDL_LIBRARY",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "UNINITIALIZED",
+ "value" : ""
+ },
+ {
+ "name" : "USE_SDL2",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Build with SDL 2.0 instead of 1.2"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "ON"
+ },
+ {
+ "name" : "WITH_OPENGL",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : "Enable OpenGL support"
+ }
+ ],
+ "type" : "BOOL",
+ "value" : "ON"
+ },
+ {
+ "name" : "ZLIB_INCLUDE_DIR",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a file."
+ }
+ ],
+ "type" : "PATH",
+ "value" : "C:/msys64/ucrt64/include"
+ },
+ {
+ "name" : "ZLIB_LIBRARY_DEBUG",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "ZLIB_LIBRARY_DEBUG-NOTFOUND"
+ },
+ {
+ "name" : "ZLIB_LIBRARY_RELEASE",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libz.dll.a"
+ },
+ {
+ "name" : "__pkg_config_arguments_PC_LIBXML",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "QUIET;libxml-2.0"
+ },
+ {
+ "name" : "__pkg_config_checked_PC_LIBXML",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "__pkg_config_checked_SDL2",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "__pkg_config_checked_SDL2GFX",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "__pkg_config_checked_SDL2IMAGE",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "__pkg_config_checked_SDL2MIXER",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "__pkg_config_checked_SDL2NET",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "__pkg_config_checked_SDL2TTF",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "1"
+ },
+ {
+ "name" : "pkgcfg_lib_PC_LIBXML_xml2",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libxml2.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2GFX_SDL2",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2GFX_SDL2_gfx",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2_gfx.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2GFX_SDL2main",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2main.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2GFX_mingw32",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libmingw32.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2IMAGE_SDL2",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2IMAGE_SDL2_image",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2_image.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2IMAGE_SDL2main",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2main.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2IMAGE_mingw32",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libmingw32.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2MIXER_SDL2",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2MIXER_SDL2_mixer",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2_mixer.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2MIXER_SDL2main",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2main.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2MIXER_mingw32",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libmingw32.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2NET_SDL2",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2NET_SDL2_net",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2_net.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2NET_SDL2main",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2main.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2NET_mingw32",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libmingw32.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2TTF_SDL2",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2TTF_SDL2_ttf",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2_ttf.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2TTF_SDL2main",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2main.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2TTF_mingw32",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libmingw32.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2_SDL2",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2.dll.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2_SDL2main",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libSDL2main.a"
+ },
+ {
+ "name" : "pkgcfg_lib_SDL2_mingw32",
+ "properties" :
+ [
+ {
+ "name" : "ADVANCED",
+ "value" : "1"
+ },
+ {
+ "name" : "HELPSTRING",
+ "value" : "Path to a library."
+ }
+ ],
+ "type" : "FILEPATH",
+ "value" : "C:/msys64/ucrt64/lib/libmingw32.a"
+ },
+ {
+ "name" : "prefix_result",
+ "properties" :
+ [
+ {
+ "name" : "HELPSTRING",
+ "value" : ""
+ }
+ ],
+ "type" : "INTERNAL",
+ "value" : "C:/msys64/ucrt64/lib"
+ }
+ ],
+ "kind" : "cache",
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 0
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/cmakeFiles-v1-3670c4c94176de1990e9.json b/out/build/default/.cmake/api/v1/reply/cmakeFiles-v1-3670c4c94176de1990e9.json new file mode 100644 index 000000000..7cbc1ac1e --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/cmakeFiles-v1-3670c4c94176de1990e9.json @@ -0,0 +1,573 @@ +{
+ "inputs" :
+ [
+ {
+ "path" : "CMakeLists.txt"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "out/build/default/CMakeFiles/4.0.3/CMakeSystem.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-Initialize.cmake"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "out/build/default/CMakeFiles/4.0.3/CMakeCCompiler.cmake"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "out/build/default/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeSystemSpecificInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeGenericSystem.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeInitializeConfigs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Windows.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/WindowsPaths.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeCInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeLanguageInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Compiler/GNU-C.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Compiler/GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-C.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU.cmake"
+ },
+ {
+ "isGenerated" : true,
+ "path" : "out/build/default/CMakeFiles/4.0.3/CMakeRCCompiler.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeRCInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-windres.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-C-ABI.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeCommonLanguageInclude.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Linker/GNU-C.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Linker/GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/Windows-GNU-C.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/Windows-GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeCXXInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeLanguageInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Compiler/GNU-CXX.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Compiler/GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-CXX.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-CXX-ABI.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeCommonLanguageInclude.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Linker/GNU-CXX.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Linker/GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/Windows-GNU-CXX.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/Windows-GNU.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindGettext.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ },
+ {
+ "path" : "src/winver.h.in"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CPack.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CPackComponent.cmake"
+ },
+ {
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Templates/CPackConfig.cmake.in"
+ },
+ {
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Templates/CPackConfig.cmake.in"
+ },
+ {
+ "path" : "data/CMakeLists.txt"
+ },
+ {
+ "path" : "data/fonts/CMakeLists.txt"
+ },
+ {
+ "path" : "data/fonts/src/CMakeLists.txt"
+ },
+ {
+ "path" : "data/graphics/CMakeLists.txt"
+ },
+ {
+ "path" : "data/graphics/badges/CMakeLists.txt"
+ },
+ {
+ "path" : "data/graphics/flags/CMakeLists.txt"
+ },
+ {
+ "path" : "data/graphics/gui/CMakeLists.txt"
+ },
+ {
+ "path" : "data/graphics/images/CMakeLists.txt"
+ },
+ {
+ "path" : "data/graphics/shaders/CMakeLists.txt"
+ },
+ {
+ "path" : "data/graphics/sprites/CMakeLists.txt"
+ },
+ {
+ "path" : "data/help/CMakeLists.txt"
+ },
+ {
+ "path" : "data/help/idx/CMakeLists.txt"
+ },
+ {
+ "path" : "data/icons/CMakeLists.txt"
+ },
+ {
+ "path" : "data/music/CMakeLists.txt"
+ },
+ {
+ "path" : "data/perserver/CMakeLists.txt"
+ },
+ {
+ "path" : "data/perserver/default/CMakeLists.txt"
+ },
+ {
+ "path" : "data/sfx/CMakeLists.txt"
+ },
+ {
+ "path" : "data/sfx/system/CMakeLists.txt"
+ },
+ {
+ "path" : "data/test/CMakeLists.txt"
+ },
+ {
+ "path" : "data/test/dir1/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/blacknblack/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/blackwood/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/classic/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/enchilado/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/golden-delicious/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/jewelry/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/jewelry-simple/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/mana/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/pink/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/unity/CMakeLists.txt"
+ },
+ {
+ "path" : "data/themes/wood/CMakeLists.txt"
+ },
+ {
+ "path" : "data/translations/CMakeLists.txt"
+ },
+ {
+ "path" : "data/translations/help/CMakeLists.txt"
+ },
+ {
+ "path" : "src/CMakeLists.txt"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPkgConfig.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindCURL.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ },
+ {
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/lib/cmake/CURL/CURLConfigVersion.cmake"
+ },
+ {
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/lib/cmake/CURL/CURLConfig.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/CMakeFindDependencyMacro.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindZLIB.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/SelectLibraryConfigurations.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ },
+ {
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/lib/cmake/CURL/CURLTargets.cmake"
+ },
+ {
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/lib/cmake/CURL/CURLTargets-release.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindLibXml2.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPkgConfig.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPNG.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindZLIB.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/SelectLibraryConfigurations.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindGettext.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindZLIB.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ },
+ {
+ "path" : "CMake/Modules/FindLibIntl.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindOpenGL.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ },
+ {
+ "path" : "po/CMakeLists.txt"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindGettext.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
+ },
+ {
+ "isCMake" : true,
+ "isExternal" : true,
+ "path" : "C:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake"
+ }
+ ],
+ "kind" : "cmakeFiles",
+ "paths" :
+ {
+ "build" : "C:/msys64/home/laptop/verse/out/build/default",
+ "source" : "C:/msys64/home/laptop/verse"
+ },
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 1
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/codemodel-v2-02703a51554e681a3d0a.json b/out/build/default/.cmake/api/v1/reply/codemodel-v2-02703a51554e681a3d0a.json new file mode 100644 index 000000000..84796a7c3 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/codemodel-v2-02703a51554e681a3d0a.json @@ -0,0 +1,840 @@ +{
+ "configurations" :
+ [
+ {
+ "directories" :
+ [
+ {
+ "build" : ".",
+ "childIndexes" :
+ [
+ 1,
+ 35,
+ 36
+ ],
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-.-d0094a50bb2071803777.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "projectIndex" : 0,
+ "source" : "."
+ },
+ {
+ "build" : "data",
+ "childIndexes" :
+ [
+ 2,
+ 4,
+ 11,
+ 13,
+ 14,
+ 15,
+ 17,
+ 19,
+ 21,
+ 33
+ ],
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data-9297ce871a875605ab09.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 0,
+ "projectIndex" : 0,
+ "source" : "data"
+ },
+ {
+ "build" : "data/fonts",
+ "childIndexes" :
+ [
+ 3
+ ],
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.fonts-85c108dd426838256009.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 1,
+ "projectIndex" : 0,
+ "source" : "data/fonts"
+ },
+ {
+ "build" : "data/fonts/src",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.fonts.src-7605c5dea3ec396226c7.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 2,
+ "projectIndex" : 0,
+ "source" : "data/fonts/src"
+ },
+ {
+ "build" : "data/graphics",
+ "childIndexes" :
+ [
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10
+ ],
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.graphics-2865eac7d216aa790661.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 1,
+ "projectIndex" : 0,
+ "source" : "data/graphics"
+ },
+ {
+ "build" : "data/graphics/badges",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.graphics.badges-660598fd5153ad5b3a94.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 4,
+ "projectIndex" : 0,
+ "source" : "data/graphics/badges"
+ },
+ {
+ "build" : "data/graphics/flags",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.graphics.flags-db8af3b23ec665afbc42.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 4,
+ "projectIndex" : 0,
+ "source" : "data/graphics/flags"
+ },
+ {
+ "build" : "data/graphics/gui",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.graphics.gui-3e45b6b5246b682abc53.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 4,
+ "projectIndex" : 0,
+ "source" : "data/graphics/gui"
+ },
+ {
+ "build" : "data/graphics/images",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.graphics.images-c32758b473cbc4d53099.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 4,
+ "projectIndex" : 0,
+ "source" : "data/graphics/images"
+ },
+ {
+ "build" : "data/graphics/shaders",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.graphics.shaders-3274f3ad7cf0a280aa3d.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 4,
+ "projectIndex" : 0,
+ "source" : "data/graphics/shaders"
+ },
+ {
+ "build" : "data/graphics/sprites",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.graphics.sprites-8b5a57ac570802732084.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 4,
+ "projectIndex" : 0,
+ "source" : "data/graphics/sprites"
+ },
+ {
+ "build" : "data/help",
+ "childIndexes" :
+ [
+ 12
+ ],
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.help-3c54cfb1cd7711ee9b8c.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 1,
+ "projectIndex" : 0,
+ "source" : "data/help"
+ },
+ {
+ "build" : "data/help/tips",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.help.tips-1d309b60c182611d3ed3.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 11,
+ "projectIndex" : 0,
+ "source" : "data/help/idx"
+ },
+ {
+ "build" : "data/icons",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.icons-436d9da4d77f2744155c.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 1,
+ "projectIndex" : 0,
+ "source" : "data/icons"
+ },
+ {
+ "build" : "data/music",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.music-ccdaec4bf281747ebeb6.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 1,
+ "projectIndex" : 0,
+ "source" : "data/music"
+ },
+ {
+ "build" : "data/perserver",
+ "childIndexes" :
+ [
+ 16
+ ],
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.perserver-d351f5c320e2371f7646.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 1,
+ "projectIndex" : 0,
+ "source" : "data/perserver"
+ },
+ {
+ "build" : "data/perserver/default",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.perserver.default-f586377b4da485a7e1d5.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 15,
+ "projectIndex" : 0,
+ "source" : "data/perserver/default"
+ },
+ {
+ "build" : "data/sfx",
+ "childIndexes" :
+ [
+ 18
+ ],
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.sfx-33375d4b352d5a847eb0.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 1,
+ "projectIndex" : 0,
+ "source" : "data/sfx"
+ },
+ {
+ "build" : "data/sfx/system",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.sfx.system-8103fbe11049894a90da.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 17,
+ "projectIndex" : 0,
+ "source" : "data/sfx/system"
+ },
+ {
+ "build" : "data/test",
+ "childIndexes" :
+ [
+ 20
+ ],
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.test-e543384ff8c089d9fd08.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 1,
+ "projectIndex" : 0,
+ "source" : "data/test"
+ },
+ {
+ "build" : "data/test/dir2",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.test.dir2-cc8cce65bfa892ea3d8f.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 19,
+ "projectIndex" : 0,
+ "source" : "data/test/dir1"
+ },
+ {
+ "build" : "data/themes",
+ "childIndexes" :
+ [
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27,
+ 28,
+ 29,
+ 30,
+ 31,
+ 32
+ ],
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.themes-0eedaecc565c091d32b1.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 1,
+ "projectIndex" : 0,
+ "source" : "data/themes"
+ },
+ {
+ "build" : "data/themes/blacknblack",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.themes.blacknblack-85cca65abc801d018686.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 21,
+ "projectIndex" : 0,
+ "source" : "data/themes/blacknblack"
+ },
+ {
+ "build" : "data/themes/blackwood",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.themes.blackwood-34f74fbfce0b611f012a.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 21,
+ "projectIndex" : 0,
+ "source" : "data/themes/blackwood"
+ },
+ {
+ "build" : "data/themes/classic",
+ "jsonFile" : "directory-data.themes.classic-b458780025da960458f8.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 21,
+ "projectIndex" : 0,
+ "source" : "data/themes/classic"
+ },
+ {
+ "build" : "data/themes/enchilado",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.themes.enchilado-8f453603b3658615c073.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 21,
+ "projectIndex" : 0,
+ "source" : "data/themes/enchilado"
+ },
+ {
+ "build" : "data/themes/golden-delicious",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.themes.golden-delicious-e1b26bb7f7cbe223a679.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 21,
+ "projectIndex" : 0,
+ "source" : "data/themes/golden-delicious"
+ },
+ {
+ "build" : "data/themes/jewelry",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.themes.jewelry-fcb6ced7017283fe9617.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 21,
+ "projectIndex" : 0,
+ "source" : "data/themes/jewelry"
+ },
+ {
+ "build" : "data/themes/jewelry-simple",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.themes.jewelry-simple-e194384aa44d6104e2fd.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 21,
+ "projectIndex" : 0,
+ "source" : "data/themes/jewelry-simple"
+ },
+ {
+ "build" : "data/themes/mana",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.themes.mana-8a7dad0327bd07fbbb64.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 21,
+ "projectIndex" : 0,
+ "source" : "data/themes/mana"
+ },
+ {
+ "build" : "data/themes/pink",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.themes.pink-90ffa10a328708971cfd.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 21,
+ "projectIndex" : 0,
+ "source" : "data/themes/pink"
+ },
+ {
+ "build" : "data/themes/unity",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.themes.unity-bf0e62012d97036c890e.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 21,
+ "projectIndex" : 0,
+ "source" : "data/themes/unity"
+ },
+ {
+ "build" : "data/themes/wood",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.themes.wood-8f74831f2374838b699a.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 21,
+ "projectIndex" : 0,
+ "source" : "data/themes/wood"
+ },
+ {
+ "build" : "data/translations",
+ "childIndexes" :
+ [
+ 34
+ ],
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.translations-d88c36a52c7c29297730.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 1,
+ "projectIndex" : 0,
+ "source" : "data/translations"
+ },
+ {
+ "build" : "data/translations/test",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-data.translations.test-6837905936fac209a61d.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 33,
+ "projectIndex" : 0,
+ "source" : "data/translations/help"
+ },
+ {
+ "build" : "src",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-src-5b1ea8a58551ac3dfd35.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 0,
+ "projectIndex" : 0,
+ "source" : "src",
+ "targetIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "build" : "po",
+ "hasInstallRule" : true,
+ "jsonFile" : "directory-po-c2bc98b28e8970332583.json",
+ "minimumCMakeVersion" :
+ {
+ "string" : "3.16"
+ },
+ "parentIndex" : 0,
+ "projectIndex" : 0,
+ "source" : "po",
+ "targetIndexes" :
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27
+ ]
+ }
+ ],
+ "name" : "",
+ "projects" :
+ [
+ {
+ "directoryIndexes" :
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27,
+ 28,
+ 29,
+ 30,
+ 31,
+ 32,
+ 33,
+ 34,
+ 35,
+ 36
+ ],
+ "name" : "MANAPLUS",
+ "targetIndexes" :
+ [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27
+ ]
+ }
+ ],
+ "targets" :
+ [
+ {
+ "directoryIndex" : 35,
+ "id" : "manaplus::@145eef247bfb46b6828c",
+ "jsonFile" : "target-manaplus-ff5dc498792527ada14f.json",
+ "name" : "manaplus",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "translations::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-translations-a38070aeb02d3a0148a2.json",
+ "name" : "translations",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-po::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-po-9a93f48e431d282970fd.json",
+ "name" : "update-po",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-pot::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-pot-71d3cff021b985f0a3e1.json",
+ "name" : "update-pot",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translatable-files::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translatable-files-b61697e31bfe5221cdd9.json",
+ "name" : "update-translatable-files",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-ca::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-ca-5155dbe44cb16e13027a.json",
+ "name" : "update-translation-ca",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-cs::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-cs-6e847e2b4db566997385.json",
+ "name" : "update-translation-cs",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-de::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-de-99b5614a6a2430d2d07e.json",
+ "name" : "update-translation-de",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-eo::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-eo-3668568101a27bef4c27.json",
+ "name" : "update-translation-eo",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-es::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-es-b1b1d13c4ef2bf95d3d9.json",
+ "name" : "update-translation-es",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-fi::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-fi-3951aa08b26a45fce9ae.json",
+ "name" : "update-translation-fi",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-fr::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-fr-ca68ac3dc3960a24a293.json",
+ "name" : "update-translation-fr",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-id::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-id-78735636f0461bed6f14.json",
+ "name" : "update-translation-id",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-it::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-it-ccd5b1a16a956e25fd61.json",
+ "name" : "update-translation-it",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-ja::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-ja-ceb987d9b783017e7a23.json",
+ "name" : "update-translation-ja",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-nl::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-nl-9bfbd77c3023eeae3e61.json",
+ "name" : "update-translation-nl",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-nl_BE::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-nl_BE-fb2044d470b3226a20c4.json",
+ "name" : "update-translation-nl_BE",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-pl::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-pl-3c4859e60a094ec9c68d.json",
+ "name" : "update-translation-pl",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-pt::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-pt-3209e284d9e5f58ddf27.json",
+ "name" : "update-translation-pt",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-pt_BR::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-pt_BR-85f108ada0e5d82e0e2c.json",
+ "name" : "update-translation-pt_BR",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-ru::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-ru-9736ba0ac81383206b32.json",
+ "name" : "update-translation-ru",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-sr::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-sr-6c46582a363fbaf433ab.json",
+ "name" : "update-translation-sr",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-sv::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-sv-17f13fba78d51868509d.json",
+ "name" : "update-translation-sv",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-sv_SE::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-sv_SE-a05bd405d023e49bf563.json",
+ "name" : "update-translation-sv_SE",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-tr::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-tr-6a95955bb3143576999f.json",
+ "name" : "update-translation-tr",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-uk::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-uk-fc0ac5e3f53157b7e867.json",
+ "name" : "update-translation-uk",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-zh_CN::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-zh_CN-38a2a3ef030158ab9b07.json",
+ "name" : "update-translation-zh_CN",
+ "projectIndex" : 0
+ },
+ {
+ "directoryIndex" : 36,
+ "id" : "update-translation-zh_HK::@fde6a12a88756396f0e5",
+ "jsonFile" : "target-update-translation-zh_HK-16f83537b89e87eeb327.json",
+ "name" : "update-translation-zh_HK",
+ "projectIndex" : 0
+ }
+ ]
+ }
+ ],
+ "kind" : "codemodel",
+ "paths" :
+ {
+ "build" : "C:/msys64/home/laptop/verse/out/build/default",
+ "source" : "C:/msys64/home/laptop/verse"
+ },
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 8
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-.-d0094a50bb2071803777.json b/out/build/default/.cmake/api/v1/reply/directory-.-d0094a50bb2071803777.json new file mode 100644 index 000000000..f056bd199 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-.-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" : [],
+ "files" : [],
+ "nodes" : []
+ },
+ "installers" : [],
+ "paths" :
+ {
+ "build" : ".",
+ "source" : "."
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data-9297ce871a875605ab09.json b/out/build/default/.cmake/api/v1/reply/directory-data-9297ce871a875605ab09.json new file mode 100644 index 000000000..aef5275f4 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data-9297ce871a875605ab09.json @@ -0,0 +1,14 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" : [],
+ "files" : [],
+ "nodes" : []
+ },
+ "installers" : [],
+ "paths" :
+ {
+ "build" : "data",
+ "source" : "data"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.fonts-85c108dd426838256009.json b/out/build/default/.cmake/api/v1/reply/directory-data.fonts-85c108dd426838256009.json new file mode 100644 index 000000000..9b58bf33a --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.fonts-85c108dd426838256009.json @@ -0,0 +1,55 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/fonts/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 19,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/fonts",
+ "paths" :
+ [
+ "data/fonts/dejavusans.ttf",
+ "data/fonts/dejavusans-bold.ttf",
+ "data/fonts/dejavusansmono.ttf",
+ "data/fonts/dejavusansmono-bold.ttf",
+ "data/fonts/dejavuserifcondensed.ttf",
+ "data/fonts/dejavuserifcondensed-bold.ttf",
+ "data/fonts/liberationsans.ttf",
+ "data/fonts/liberationsans-bold.ttf",
+ "data/fonts/liberationsansmono.ttf",
+ "data/fonts/liberationsansmono-bold.ttf",
+ "data/fonts/mplus-1p-bold.ttf",
+ "data/fonts/mplus-1p-regular.ttf",
+ "data/fonts/wqy-microhei.ttf"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/fonts",
+ "source" : "data/fonts"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.fonts.src-7605c5dea3ec396226c7.json b/out/build/default/.cmake/api/v1/reply/directory-data.fonts.src-7605c5dea3ec396226c7.json new file mode 100644 index 000000000..e5f365abe --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.fonts.src-7605c5dea3ec396226c7.json @@ -0,0 +1,53 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/fonts/src/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 15,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/fonts/src",
+ "paths" :
+ [
+ "data/fonts/src/DejaVuSans-Bold.sfd",
+ "data/fonts/src/DejaVuSans.sfd",
+ "data/fonts/src/DejaVuSansMono-Bold.sfd",
+ "data/fonts/src/DejaVuSansMono.sfd",
+ "data/fonts/src/DejaVuSerifCondensed-Bold.sfd",
+ "data/fonts/src/DejaVuSerifCondensed.sfd",
+ "data/fonts/src/LiberationMono-Bold.sfd",
+ "data/fonts/src/LiberationMono-Regular.sfd",
+ "data/fonts/src/LiberationSans-Bold.sfd",
+ "data/fonts/src/LiberationSans-Regular.sfd",
+ "data/fonts/src/info.txt"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/fonts/src",
+ "source" : "data/fonts/src"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.graphics-2865eac7d216aa790661.json b/out/build/default/.cmake/api/v1/reply/directory-data.graphics-2865eac7d216aa790661.json new file mode 100644 index 000000000..e9a0b4571 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.graphics-2865eac7d216aa790661.json @@ -0,0 +1,14 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" : [],
+ "files" : [],
+ "nodes" : []
+ },
+ "installers" : [],
+ "paths" :
+ {
+ "build" : "data/graphics",
+ "source" : "data/graphics"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.graphics.badges-660598fd5153ad5b3a94.json b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.badges-660598fd5153ad5b3a94.json new file mode 100644 index 000000000..783b79ad0 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.badges-660598fd5153ad5b3a94.json @@ -0,0 +1,56 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/graphics/badges/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 18,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/graphics/badges",
+ "paths" :
+ [
+ "data/graphics/badges/away.png",
+ "data/graphics/badges/away.xml",
+ "data/graphics/badges/gm.png",
+ "data/graphics/badges/gm.xml",
+ "data/graphics/badges/inactive.png",
+ "data/graphics/badges/inactive.xml",
+ "data/graphics/badges/shop.png",
+ "data/graphics/badges/shop.xml",
+ "data/graphics/badges/team1.png",
+ "data/graphics/badges/team1.xml",
+ "data/graphics/badges/team2.png",
+ "data/graphics/badges/team2.xml",
+ "data/graphics/badges/team3.png",
+ "data/graphics/badges/team3.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/graphics/badges",
+ "source" : "data/graphics/badges"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.graphics.flags-db8af3b23ec665afbc42.json b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.flags-db8af3b23ec665afbc42.json new file mode 100644 index 000000000..8435a5c10 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.flags-db8af3b23ec665afbc42.json @@ -0,0 +1,63 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/graphics/flags/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 25,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/graphics/flags",
+ "paths" :
+ [
+ "data/graphics/flags/ca.png",
+ "data/graphics/flags/cn.png",
+ "data/graphics/flags/cz.png",
+ "data/graphics/flags/de.png",
+ "data/graphics/flags/en.png",
+ "data/graphics/flags/eo.png",
+ "data/graphics/flags/es.png",
+ "data/graphics/flags/fi.png",
+ "data/graphics/flags/fr.png",
+ "data/graphics/flags/hk.png",
+ "data/graphics/flags/id.png",
+ "data/graphics/flags/it.png",
+ "data/graphics/flags/jp.png",
+ "data/graphics/flags/nl_BE.png",
+ "data/graphics/flags/pl.png",
+ "data/graphics/flags/pt_BR.png",
+ "data/graphics/flags/pt.png",
+ "data/graphics/flags/ru.png",
+ "data/graphics/flags/se.png",
+ "data/graphics/flags/tr.png",
+ "data/graphics/flags/ua.png"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/graphics/flags",
+ "source" : "data/graphics/flags"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.graphics.gui-3e45b6b5246b682abc53.json b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.gui-3e45b6b5246b682abc53.json new file mode 100644 index 000000000..31147dcad --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.gui-3e45b6b5246b682abc53.json @@ -0,0 +1,150 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/graphics/gui/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 112,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/graphics/gui",
+ "paths" :
+ [
+ "data/graphics/gui/browserbox.xml",
+ "data/graphics/gui/bubble.png",
+ "data/graphics/gui/bubble.xml",
+ "data/graphics/gui/button.xml",
+ "data/graphics/gui/button_disabled.xml",
+ "data/graphics/gui/button_highlighted.xml",
+ "data/graphics/gui/button_pressed.xml",
+ "data/graphics/gui/buttonpin.xml",
+ "data/graphics/gui/buttonpin_disabled.xml",
+ "data/graphics/gui/buttonpin_highlighted.xml",
+ "data/graphics/gui/buttonpin_pressed.xml",
+ "data/graphics/gui/buttonplay.png",
+ "data/graphics/gui/buttonsicons.png",
+ "data/graphics/gui/buy.xml",
+ "data/graphics/gui/charcreate_playerbox.xml",
+ "data/graphics/gui/checkbox.xml",
+ "data/graphics/gui/circle-off.xml",
+ "data/graphics/gui/circle-on.xml",
+ "data/graphics/gui/colors.xml",
+ "data/graphics/gui/complete_icon.xml",
+ "data/graphics/gui/connection.xml",
+ "data/graphics/gui/cutin.xml",
+ "data/graphics/gui/dbutton.xml",
+ "data/graphics/gui/dbutton_image.xml",
+ "data/graphics/gui/desktop.xml",
+ "data/graphics/gui/dpad.xml",
+ "data/graphics/gui/dpad_image.xml",
+ "data/graphics/gui/dropdown.xml",
+ "data/graphics/gui/dropdown_background.xml",
+ "data/graphics/gui/dropdown_pressed.xml",
+ "data/graphics/gui/emote_selection.xml",
+ "data/graphics/gui/emotes.xml",
+ "data/graphics/gui/emotetabs.xml",
+ "data/graphics/gui/equipment.xml",
+ "data/graphics/gui/equipment_background.xml",
+ "data/graphics/gui/equipment_playerbox.xml",
+ "data/graphics/gui/equipmentbox.png",
+ "data/graphics/gui/incomplete_icon.xml",
+ "data/graphics/gui/info.xml",
+ "data/graphics/gui/inventory.xml",
+ "data/graphics/gui/inventory_cell.xml",
+ "data/graphics/gui/inventory_cell2.xml",
+ "data/graphics/gui/item_selection.xml",
+ "data/graphics/gui/item_shortcut_background.xml",
+ "data/graphics/gui/itemcontainer.xml",
+ "data/graphics/gui/items.xml",
+ "data/graphics/gui/keyboard_icon.xml",
+ "data/graphics/gui/label.xml",
+ "data/graphics/gui/listbox.xml",
+ "data/graphics/gui/lock.png",
+ "data/graphics/gui/mailedit.xml",
+ "data/graphics/gui/ministatus.xml",
+ "data/graphics/gui/mouse.png",
+ "data/graphics/gui/npc.xml",
+ "data/graphics/gui/ok.xml",
+ "data/graphics/gui/onlinebrowserbox.xml",
+ "data/graphics/gui/outfits.xml",
+ "data/graphics/gui/pin.xml",
+ "data/graphics/gui/playerbox.xml",
+ "data/graphics/gui/playerboxselected.xml",
+ "data/graphics/gui/popup.xml",
+ "data/graphics/gui/popupbrowserbox.xml",
+ "data/graphics/gui/progress-indicator.png",
+ "data/graphics/gui/progressbar.xml",
+ "data/graphics/gui/progressbar_fill.xml",
+ "data/graphics/gui/quests.xml",
+ "data/graphics/gui/radio.xml",
+ "data/graphics/gui/resize.xml",
+ "data/graphics/gui/scroll.xml",
+ "data/graphics/gui/scroll_background.xml",
+ "data/graphics/gui/scroll_hbackground.xml",
+ "data/graphics/gui/scroll_highlighted.xml",
+ "data/graphics/gui/scroll_vbackground.xml",
+ "data/graphics/gui/scrollbuttons.xml",
+ "data/graphics/gui/scrollbuttons_pressed.xml",
+ "data/graphics/gui/sell.xml",
+ "data/graphics/gui/server.xml",
+ "data/graphics/gui/serverinfo.xml",
+ "data/graphics/gui/shop.xml",
+ "data/graphics/gui/skillrectanglelistbox.xml",
+ "data/graphics/gui/slider.xml",
+ "data/graphics/gui/slider_highlighted.xml",
+ "data/graphics/gui/speechbrowserbox.xml",
+ "data/graphics/gui/speechbubble.xml",
+ "data/graphics/gui/spells.xml",
+ "data/graphics/gui/tab.xml",
+ "data/graphics/gui/tab_highlighted.xml",
+ "data/graphics/gui/tab_selected.xml",
+ "data/graphics/gui/tab_unused.xml",
+ "data/graphics/gui/target-cursor-in-range-l.png",
+ "data/graphics/gui/target-cursor-in-range-l.xml",
+ "data/graphics/gui/target-cursor-in-range-m.png",
+ "data/graphics/gui/target-cursor-in-range-m.xml",
+ "data/graphics/gui/target-cursor-in-range-s.png",
+ "data/graphics/gui/target-cursor-in-range-s.xml",
+ "data/graphics/gui/target-cursor-normal-l.png",
+ "data/graphics/gui/target-cursor-normal-l.xml",
+ "data/graphics/gui/target-cursor-normal-m.png",
+ "data/graphics/gui/target-cursor-normal-m.xml",
+ "data/graphics/gui/target-cursor-normal-s.png",
+ "data/graphics/gui/target-cursor-normal-s.xml",
+ "data/graphics/gui/textfield.xml",
+ "data/graphics/gui/textpreview.xml",
+ "data/graphics/gui/unknown-item.png",
+ "data/graphics/gui/window.png",
+ "data/graphics/gui/window.xml",
+ "data/graphics/gui/windowmenu.xml",
+ "data/graphics/gui/world.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/graphics/gui",
+ "source" : "data/graphics/gui"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.graphics.images-c32758b473cbc4d53099.json b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.images-c32758b473cbc4d53099.json new file mode 100644 index 000000000..d372478dd --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.images-c32758b473cbc4d53099.json @@ -0,0 +1,44 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/graphics/images/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 6,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/graphics/images",
+ "paths" :
+ [
+ "data/graphics/images/error.png",
+ "data/graphics/images/login_wallpaper.png"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/graphics/images",
+ "source" : "data/graphics/images"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.graphics.shaders-3274f3ad7cf0a280aa3d.json b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.shaders-3274f3ad7cf0a280aa3d.json new file mode 100644 index 000000000..46fbc97f4 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.shaders-3274f3ad7cf0a280aa3d.json @@ -0,0 +1,46 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/graphics/shaders/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 8,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/graphics/shaders",
+ "paths" :
+ [
+ "data/graphics/shaders/gles2_frag.glsl",
+ "data/graphics/shaders/gles2_vertex.glsl",
+ "data/graphics/shaders/simple_frag.glsl",
+ "data/graphics/shaders/simple_vertex.glsl"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/graphics/shaders",
+ "source" : "data/graphics/shaders"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.graphics.sprites-8b5a57ac570802732084.json b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.sprites-8b5a57ac570802732084.json new file mode 100644 index 000000000..be863a928 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.graphics.sprites-8b5a57ac570802732084.json @@ -0,0 +1,53 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/graphics/sprites/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 15,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/graphics/sprites",
+ "paths" :
+ [
+ "data/graphics/sprites/arrow_down.png",
+ "data/graphics/sprites/arrow_left.png",
+ "data/graphics/sprites/arrow_right.png",
+ "data/graphics/sprites/arrow_up.png",
+ "data/graphics/sprites/chatemotes.png",
+ "data/graphics/sprites/error.png",
+ "data/graphics/sprites/error.xml",
+ "data/graphics/sprites/manaplus_emotions.png",
+ "data/graphics/sprites/manaplus_emote.xml",
+ "data/graphics/sprites/manaplus_emotes.xml",
+ "data/graphics/sprites/test.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/graphics/sprites",
+ "source" : "data/graphics/sprites"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.help-3c54cfb1cd7711ee9b8c.json b/out/build/default/.cmake/api/v1/reply/directory-data.help-3c54cfb1cd7711ee9b8c.json new file mode 100644 index 000000000..53c7bc061 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.help-3c54cfb1cd7711ee9b8c.json @@ -0,0 +1,59 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/help/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 23,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/help",
+ "paths" :
+ [
+ "data/help/about.txt",
+ "data/help/about-tmw.txt",
+ "data/help/chatcommands.txt",
+ "data/help/chatguild.txt",
+ "data/help/chatparty.txt",
+ "data/help/commands.txt",
+ "data/help/download.txt",
+ "data/help/footer.txt",
+ "data/help/header.txt",
+ "data/help/index.txt",
+ "data/help/otherteam.txt",
+ "data/help/searchmany.txt",
+ "data/help/searchnotfound.txt",
+ "data/help/skills.txt",
+ "data/help/support.txt",
+ "data/help/team.txt",
+ "data/help/windows.txt"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/help",
+ "source" : "data/help"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.help.tips-1d309b60c182611d3ed3.json b/out/build/default/.cmake/api/v1/reply/directory-data.help.tips-1d309b60c182611d3ed3.json new file mode 100644 index 000000000..7a58b1f9e --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.help.tips-1d309b60c182611d3ed3.json @@ -0,0 +1,54 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/help/idx/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 16,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/help/idx",
+ "paths" :
+ [
+ "data/help/idx/about-tmw.idx",
+ "data/help/idx/about.idx",
+ "data/help/idx/chatcommands.idx",
+ "data/help/idx/chatguild.idx",
+ "data/help/idx/chatparty.idx",
+ "data/help/idx/download.idx",
+ "data/help/idx/index.idx",
+ "data/help/idx/otherteam.idx",
+ "data/help/idx/skills.idx",
+ "data/help/idx/support.idx",
+ "data/help/idx/tags.idx",
+ "data/help/idx/team.idx"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/help/tips",
+ "source" : "data/help/idx"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.icons-436d9da4d77f2744155c.json b/out/build/default/.cmake/api/v1/reply/directory-data.icons-436d9da4d77f2744155c.json new file mode 100644 index 000000000..2e5997956 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.icons-436d9da4d77f2744155c.json @@ -0,0 +1,59 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/icons/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 5,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 7,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/icons",
+ "paths" :
+ [
+ "data/icons/manaplus.svg"
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 2,
+ "component" : "Unspecified",
+ "destination" : "share/icons/hicolor/scalable/apps",
+ "paths" :
+ [
+ "data/icons/manaplus.svg"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/icons",
+ "source" : "data/icons"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.music-ccdaec4bf281747ebeb6.json b/out/build/default/.cmake/api/v1/reply/directory-data.music-ccdaec4bf281747ebeb6.json new file mode 100644 index 000000000..8dfd94796 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.music-ccdaec4bf281747ebeb6.json @@ -0,0 +1,43 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/music/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 5,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/music",
+ "paths" :
+ [
+ "data/music/keprohm.ogg"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/music",
+ "source" : "data/music"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.perserver-d351f5c320e2371f7646.json b/out/build/default/.cmake/api/v1/reply/directory-data.perserver-d351f5c320e2371f7646.json new file mode 100644 index 000000000..b43f01808 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.perserver-d351f5c320e2371f7646.json @@ -0,0 +1,14 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" : [],
+ "files" : [],
+ "nodes" : []
+ },
+ "installers" : [],
+ "paths" :
+ {
+ "build" : "data/perserver",
+ "source" : "data/perserver"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.perserver.default-f586377b4da485a7e1d5.json b/out/build/default/.cmake/api/v1/reply/directory-data.perserver.default-f586377b4da485a7e1d5.json new file mode 100644 index 000000000..a6d6d1a39 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.perserver.default-f586377b4da485a7e1d5.json @@ -0,0 +1,50 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/perserver/default/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 12,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/perserver/default",
+ "paths" :
+ [
+ "data/perserver/default/charcreation.xml",
+ "data/perserver/default/chatcommands.txt",
+ "data/perserver/default/deadmessages.xml",
+ "data/perserver/default/defaultcommands.xml",
+ "data/perserver/default/features.xml",
+ "data/perserver/default/gmcommands.txt",
+ "data/perserver/default/groups.xml",
+ "data/perserver/default/weapons.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/perserver/default",
+ "source" : "data/perserver/default"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.sfx-33375d4b352d5a847eb0.json b/out/build/default/.cmake/api/v1/reply/directory-data.sfx-33375d4b352d5a847eb0.json new file mode 100644 index 000000000..edfdcbcf8 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.sfx-33375d4b352d5a847eb0.json @@ -0,0 +1,14 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" : [],
+ "files" : [],
+ "nodes" : []
+ },
+ "installers" : [],
+ "paths" :
+ {
+ "build" : "data/sfx",
+ "source" : "data/sfx"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.sfx.system-8103fbe11049894a90da.json b/out/build/default/.cmake/api/v1/reply/directory-data.sfx.system-8103fbe11049894a90da.json new file mode 100644 index 000000000..d3fe879dd --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.sfx.system-8103fbe11049894a90da.json @@ -0,0 +1,61 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/sfx/system/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 23,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/sfx/system",
+ "paths" :
+ [
+ "data/sfx/system/attention.ogg",
+ "data/sfx/system/book.ogg",
+ "data/sfx/system/chat1.ogg",
+ "data/sfx/system/chat2.ogg",
+ "data/sfx/system/complete.ogg",
+ "data/sfx/system/email.ogg",
+ "data/sfx/system/error.ogg",
+ "data/sfx/system/finish.ogg",
+ "data/sfx/system/incoming.ogg",
+ "data/sfx/system/move.ogg",
+ "data/sfx/system/notify.ogg",
+ "data/sfx/system/newmessage.ogg",
+ "data/sfx/system/offline.ogg",
+ "data/sfx/system/online.ogg",
+ "data/sfx/system/page.ogg",
+ "data/sfx/system/reminder.ogg",
+ "data/sfx/system/send.ogg",
+ "data/sfx/system/start.ogg",
+ "data/sfx/system/watcher.ogg"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/sfx/system",
+ "source" : "data/sfx/system"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.test-e543384ff8c089d9fd08.json b/out/build/default/.cmake/api/v1/reply/directory-data.test-e543384ff8c089d9fd08.json new file mode 100644 index 000000000..6dfdd2dac --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.test-e543384ff8c089d9fd08.json @@ -0,0 +1,69 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/test/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 31,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/test",
+ "paths" :
+ [
+ "data/test/arrow_up.png",
+ "data/test/arrow_up_A.png",
+ "data/test/arrow_up_B.png",
+ "data/test/arrow_up_S.png",
+ "data/test/dye.png",
+ "data/test/equipmentwindow.xml",
+ "data/test/hide.png",
+ "data/test/items.xml",
+ "data/test/itemxmlutils_test.xml",
+ "data/test/palette.gpl",
+ "data/test/paths.xml",
+ "data/test/quests.xml",
+ "data/test/serverlistplus.xml",
+ "data/test/simplefile.txt",
+ "data/test/test.txt",
+ "data/test/test2.txt",
+ "data/test/test.zip",
+ "data/test/test2.zip",
+ "data/test/test3.zip",
+ "data/test/test4.zip",
+ "data/test/test5.zip",
+ "data/test/testintmap.xml",
+ "data/test/units.xml",
+ "data/test/graphics/sprites/hairstyles/hairstyle01.png",
+ "data/test/graphics/sprites/hairstyles/hairstyle01.xml",
+ "data/test/graphics/sprites/hairstyles/hairstyle02.png",
+ "data/test/graphics/sprites/hairstyles/hairstyle02.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/test",
+ "source" : "data/test"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.test.dir2-cc8cce65bfa892ea3d8f.json b/out/build/default/.cmake/api/v1/reply/directory-data.test.dir2-cc8cce65bfa892ea3d8f.json new file mode 100644 index 000000000..03dbde670 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.test.dir2-cc8cce65bfa892ea3d8f.json @@ -0,0 +1,43 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/test/dir1/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 5,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/test/dir1",
+ "paths" :
+ [
+ "data/test/dir1/file1.txt"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/test/dir2",
+ "source" : "data/test/dir1"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes-0eedaecc565c091d32b1.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes-0eedaecc565c091d32b1.json new file mode 100644 index 000000000..a1c1c3ebe --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes-0eedaecc565c091d32b1.json @@ -0,0 +1,14 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" : [],
+ "files" : [],
+ "nodes" : []
+ },
+ "installers" : [],
+ "paths" :
+ {
+ "build" : "data/themes",
+ "source" : "data/themes"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes.blacknblack-85cca65abc801d018686.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes.blacknblack-85cca65abc801d018686.json new file mode 100644 index 000000000..916ab37dd --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes.blacknblack-85cca65abc801d018686.json @@ -0,0 +1,48 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/themes/blacknblack/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 10,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/themes/blacknblack",
+ "paths" :
+ [
+ "data/themes/blacknblack/bubble.png",
+ "data/themes/blacknblack/colors.xml",
+ "data/themes/blacknblack/emotetabs.xml",
+ "data/themes/blacknblack/info.xml",
+ "data/themes/blacknblack/mouse.png",
+ "data/themes/blacknblack/window.png"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/themes/blacknblack",
+ "source" : "data/themes/blacknblack"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes.blackwood-34f74fbfce0b611f012a.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes.blackwood-34f74fbfce0b611f012a.json new file mode 100644 index 000000000..e17f7c8e3 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes.blackwood-34f74fbfce0b611f012a.json @@ -0,0 +1,49 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/themes/blackwood/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 11,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/themes/blackwood",
+ "paths" :
+ [
+ "data/themes/blackwood/colors.xml",
+ "data/themes/blackwood/info.xml",
+ "data/themes/blackwood/mouse.png",
+ "data/themes/blackwood/progress-indicator.png",
+ "data/themes/blackwood/speech_bubble.png",
+ "data/themes/blackwood/speechbubble.xml",
+ "data/themes/blackwood/window.png"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/themes/blackwood",
+ "source" : "data/themes/blackwood"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes.classic-b458780025da960458f8.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes.classic-b458780025da960458f8.json new file mode 100644 index 000000000..5a4979f9e --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes.classic-b458780025da960458f8.json @@ -0,0 +1,14 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" : [],
+ "files" : [],
+ "nodes" : []
+ },
+ "installers" : [],
+ "paths" :
+ {
+ "build" : "data/themes/classic",
+ "source" : "data/themes/classic"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes.enchilado-8f453603b3658615c073.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes.enchilado-8f453603b3658615c073.json new file mode 100644 index 000000000..f860c0e04 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes.enchilado-8f453603b3658615c073.json @@ -0,0 +1,65 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/themes/enchilado/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 27,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/themes/enchilado",
+ "paths" :
+ [
+ "data/themes/enchilado/buy.xml",
+ "data/themes/enchilado/colors.xml",
+ "data/themes/enchilado/cutin.xml",
+ "data/themes/enchilado/emotes.xml",
+ "data/themes/enchilado/equipment.xml",
+ "data/themes/enchilado/info.xml",
+ "data/themes/enchilado/inventory.xml",
+ "data/themes/enchilado/items.xml",
+ "data/themes/enchilado/mailedit.xml",
+ "data/themes/enchilado/npc.xml",
+ "data/themes/enchilado/ok.xml",
+ "data/themes/enchilado/outfits.xml",
+ "data/themes/enchilado/popup.xml",
+ "data/themes/enchilado/progressbar.xml",
+ "data/themes/enchilado/quests.xml",
+ "data/themes/enchilado/sell.xml",
+ "data/themes/enchilado/server.xml",
+ "data/themes/enchilado/serverinfo.xml",
+ "data/themes/enchilado/shop.xml",
+ "data/themes/enchilado/spells.xml",
+ "data/themes/enchilado/window.png",
+ "data/themes/enchilado/window.xml",
+ "data/themes/enchilado/world.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/themes/enchilado",
+ "source" : "data/themes/enchilado"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes.golden-delicious-e1b26bb7f7cbe223a679.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes.golden-delicious-e1b26bb7f7cbe223a679.json new file mode 100644 index 000000000..668aeb57d --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes.golden-delicious-e1b26bb7f7cbe223a679.json @@ -0,0 +1,163 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/themes/golden-delicious/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 125,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/themes/golden-delicious",
+ "paths" :
+ [
+ "data/themes/golden-delicious/avatarlistbox.xml",
+ "data/themes/golden-delicious/beingpopup.xml",
+ "data/themes/golden-delicious/browserbox.xml",
+ "data/themes/golden-delicious/button_disabled.xml",
+ "data/themes/golden-delicious/button_highlighted.xml",
+ "data/themes/golden-delicious/button_pressed.xml",
+ "data/themes/golden-delicious/button.xml",
+ "data/themes/golden-delicious/buttonpin_disabled.xml",
+ "data/themes/golden-delicious/buttonpin_highlighted.xml",
+ "data/themes/golden-delicious/buttonpin_pressed.xml",
+ "data/themes/golden-delicious/buttonpin.xml",
+ "data/themes/golden-delicious/buy.xml",
+ "data/themes/golden-delicious/charcreate.xml",
+ "data/themes/golden-delicious/CHANGELOG.txt",
+ "data/themes/golden-delicious/chat.xml",
+ "data/themes/golden-delicious/checkbox.xml",
+ "data/themes/golden-delicious/circle-off.xml",
+ "data/themes/golden-delicious/circle-on.xml",
+ "data/themes/golden-delicious/colors.xml",
+ "data/themes/golden-delicious/complete_icon.xml",
+ "data/themes/golden-delicious/cutin.xml",
+ "data/themes/golden-delicious/dbutton.xml",
+ "data/themes/golden-delicious/desktop.xml",
+ "data/themes/golden-delicious/didyouknow.xml",
+ "data/themes/golden-delicious/dpad.xml",
+ "data/themes/golden-delicious/dropdown_background.xml",
+ "data/themes/golden-delicious/dropdown_pressed.xml",
+ "data/themes/golden-delicious/dropdown.xml",
+ "data/themes/golden-delicious/drops.xml",
+ "data/themes/golden-delicious/edit.xml",
+ "data/themes/golden-delicious/emotes.xml",
+ "data/themes/golden-delicious/emotetabs.xml",
+ "data/themes/golden-delicious/equipment_background.xml",
+ "data/themes/golden-delicious/equipmentbox.png",
+ "data/themes/golden-delicious/equipment.xml",
+ "data/themes/golden-delicious/extendedlistbox_high.xml",
+ "data/themes/golden-delicious/extendedlistbox_medium.xml",
+ "data/themes/golden-delicious/extendedlistbox_xhigh.xml",
+ "data/themes/golden-delicious/extendedlistbox.xml",
+ "data/themes/golden-delicious/extendedlistbox_xxhigh.xml",
+ "data/themes/golden-delicious/help.xml",
+ "data/themes/golden-delicious/incomplete_icon.xml",
+ "data/themes/golden-delicious/info.xml",
+ "data/themes/golden-delicious/inventory.xml",
+ "data/themes/golden-delicious/inventory_cell2.xml",
+ "data/themes/golden-delicious/itemcontainer.xml",
+ "data/themes/golden-delicious/itempopup.xml",
+ "data/themes/golden-delicious/item_selection.xml",
+ "data/themes/golden-delicious/items.xml",
+ "data/themes/golden-delicious/keyboard_icon_high.xml",
+ "data/themes/golden-delicious/keyboard_icon_medium.xml",
+ "data/themes/golden-delicious/keyboard_icon_xhigh.xml",
+ "data/themes/golden-delicious/keyboard_icon.xml",
+ "data/themes/golden-delicious/keyboard_icon_xxhigh.xml",
+ "data/themes/golden-delicious/LICENSE.txt",
+ "data/themes/golden-delicious/listbox_high.xml",
+ "data/themes/golden-delicious/listbox_medium.xml",
+ "data/themes/golden-delicious/listbox_xhigh.xml",
+ "data/themes/golden-delicious/listbox.xml",
+ "data/themes/golden-delicious/listbox_xxhigh.xml",
+ "data/themes/golden-delicious/login.xml",
+ "data/themes/golden-delicious/mailedit.xml",
+ "data/themes/golden-delicious/map.xml",
+ "data/themes/golden-delicious/ministatus.xml",
+ "data/themes/golden-delicious/mouse.png",
+ "data/themes/golden-delicious/npc.xml",
+ "data/themes/golden-delicious/ok.xml",
+ "data/themes/golden-delicious/onlinebrowserbox.xml",
+ "data/themes/golden-delicious/outfits.xml",
+ "data/themes/golden-delicious/pin.xml",
+ "data/themes/golden-delicious/playerboxselected.xml",
+ "data/themes/golden-delicious/playerbox.xml",
+ "data/themes/golden-delicious/popupbrowserbox_high.xml",
+ "data/themes/golden-delicious/popupbrowserbox_xhigh.xml",
+ "data/themes/golden-delicious/popupbrowserbox.xml",
+ "data/themes/golden-delicious/popupbrowserbox_xxhigh.xml",
+ "data/themes/golden-delicious/popup_high.xml",
+ "data/themes/golden-delicious/popuplist.xml",
+ "data/themes/golden-delicious/popupmenu_high.xml",
+ "data/themes/golden-delicious/popupmenu_medium.xml",
+ "data/themes/golden-delicious/popupmenu_xhigh.xml",
+ "data/themes/golden-delicious/popupmenu.xml",
+ "data/themes/golden-delicious/popupmenu_xxhigh.xml",
+ "data/themes/golden-delicious/popup_xhigh.xml",
+ "data/themes/golden-delicious/popup.xml",
+ "data/themes/golden-delicious/popup_xxhigh.xml",
+ "data/themes/golden-delicious/progressbar.xml",
+ "data/themes/golden-delicious/progress-indicator.png",
+ "data/themes/golden-delicious/quests.xml",
+ "data/themes/golden-delicious/radio.xml",
+ "data/themes/golden-delicious/resize.xml",
+ "data/themes/golden-delicious/scroll_background.xml",
+ "data/themes/golden-delicious/scrollbuttons_pressed.xml",
+ "data/themes/golden-delicious/scrollbuttons.xml",
+ "data/themes/golden-delicious/scroll_hbackground.xml",
+ "data/themes/golden-delicious/scroll_highlighted.xml",
+ "data/themes/golden-delicious/scroll_vbackground.xml",
+ "data/themes/golden-delicious/scroll.xml",
+ "data/themes/golden-delicious/sell.xml",
+ "data/themes/golden-delicious/serverslistbox.xml",
+ "data/themes/golden-delicious/server.xml",
+ "data/themes/golden-delicious/serverinfo.xml",
+ "data/themes/golden-delicious/shoplistbox.xml",
+ "data/themes/golden-delicious/shop.xml",
+ "data/themes/golden-delicious/skilllistbox.xml",
+ "data/themes/golden-delicious/skillpopup.xml",
+ "data/themes/golden-delicious/skillrectanglelistbox.xml",
+ "data/themes/golden-delicious/slider_highlighted.xml",
+ "data/themes/golden-delicious/slider.xml",
+ "data/themes/golden-delicious/social.xml",
+ "data/themes/golden-delicious/spells.xml",
+ "data/themes/golden-delicious/status.xml",
+ "data/themes/golden-delicious/tab_highlighted.xml",
+ "data/themes/golden-delicious/tab_selected.xml",
+ "data/themes/golden-delicious/tab_unused.xml",
+ "data/themes/golden-delicious/tab.xml",
+ "data/themes/golden-delicious/textfield.xml",
+ "data/themes/golden-delicious/windowmenu.xml",
+ "data/themes/golden-delicious/window.png",
+ "data/themes/golden-delicious/window.xml",
+ "data/themes/golden-delicious/world.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/themes/golden-delicious",
+ "source" : "data/themes/golden-delicious"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes.jewelry-fcb6ced7017283fe9617.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes.jewelry-fcb6ced7017283fe9617.json new file mode 100644 index 000000000..651baf47f --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes.jewelry-fcb6ced7017283fe9617.json @@ -0,0 +1,162 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/themes/jewelry/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 124,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/themes/jewelry",
+ "paths" :
+ [
+ "data/themes/jewelry/avatarlistbox.xml",
+ "data/themes/jewelry/beingpopup.xml",
+ "data/themes/jewelry/browserbox.xml",
+ "data/themes/jewelry/button.xml",
+ "data/themes/jewelry/button_disabled.xml",
+ "data/themes/jewelry/button_highlighted.xml",
+ "data/themes/jewelry/button_pressed.xml",
+ "data/themes/jewelry/buttonpin.xml",
+ "data/themes/jewelry/buttonpin_disabled.xml",
+ "data/themes/jewelry/buttonpin_highlighted.xml",
+ "data/themes/jewelry/buttonpin_pressed.xml",
+ "data/themes/jewelry/buy.xml",
+ "data/themes/jewelry/charcreate.xml",
+ "data/themes/jewelry/CHANGELOG.txt",
+ "data/themes/jewelry/chat.xml",
+ "data/themes/jewelry/checkbox.xml",
+ "data/themes/jewelry/circle-off.xml",
+ "data/themes/jewelry/circle-on.xml",
+ "data/themes/jewelry/colors.xml",
+ "data/themes/jewelry/complete_icon.xml",
+ "data/themes/jewelry/cutin.xml",
+ "data/themes/jewelry/dbutton.xml",
+ "data/themes/jewelry/didyouknow.xml",
+ "data/themes/jewelry/dpad.xml",
+ "data/themes/jewelry/dropdown.xml",
+ "data/themes/jewelry/dropdown_background.xml",
+ "data/themes/jewelry/dropdown_pressed.xml",
+ "data/themes/jewelry/drops.xml",
+ "data/themes/jewelry/edit.xml",
+ "data/themes/jewelry/emotes.xml",
+ "data/themes/jewelry/emotetabs.xml",
+ "data/themes/jewelry/equipment.xml",
+ "data/themes/jewelry/equipment_background.xml",
+ "data/themes/jewelry/equipmentbox.png",
+ "data/themes/jewelry/extendedlistbox.xml",
+ "data/themes/jewelry/extendedlistbox_high.xml",
+ "data/themes/jewelry/extendedlistbox_medium.xml",
+ "data/themes/jewelry/extendedlistbox_xhigh.xml",
+ "data/themes/jewelry/extendedlistbox_xxhigh.xml",
+ "data/themes/jewelry/help.xml",
+ "data/themes/jewelry/incomplete_icon.xml",
+ "data/themes/jewelry/info.xml",
+ "data/themes/jewelry/inventory.xml",
+ "data/themes/jewelry/inventory_cell2.xml",
+ "data/themes/jewelry/item_selection.xml",
+ "data/themes/jewelry/itemcontainer.xml",
+ "data/themes/jewelry/itempopup.xml",
+ "data/themes/jewelry/items.xml",
+ "data/themes/jewelry/keyboard_icon.xml",
+ "data/themes/jewelry/keyboard_icon_high.xml",
+ "data/themes/jewelry/keyboard_icon_medium.xml",
+ "data/themes/jewelry/keyboard_icon_xhigh.xml",
+ "data/themes/jewelry/keyboard_icon_xxhigh.xml",
+ "data/themes/jewelry/LICENSE.txt",
+ "data/themes/jewelry/listbox.xml",
+ "data/themes/jewelry/listbox_high.xml",
+ "data/themes/jewelry/listbox_medium.xml",
+ "data/themes/jewelry/listbox_xhigh.xml",
+ "data/themes/jewelry/listbox_xxhigh.xml",
+ "data/themes/jewelry/login.xml",
+ "data/themes/jewelry/mailedit.xml",
+ "data/themes/jewelry/map.xml",
+ "data/themes/jewelry/ministatus.xml",
+ "data/themes/jewelry/mouse.png",
+ "data/themes/jewelry/npc.xml",
+ "data/themes/jewelry/ok.xml",
+ "data/themes/jewelry/onlinebrowserbox.xml",
+ "data/themes/jewelry/outfits.xml",
+ "data/themes/jewelry/pin.xml",
+ "data/themes/jewelry/playerbox.xml",
+ "data/themes/jewelry/playerboxselected.xml",
+ "data/themes/jewelry/popup.xml",
+ "data/themes/jewelry/popup_high.xml",
+ "data/themes/jewelry/popup_xhigh.xml",
+ "data/themes/jewelry/popup_xxhigh.xml",
+ "data/themes/jewelry/popupbrowserbox.xml",
+ "data/themes/jewelry/popupbrowserbox_high.xml",
+ "data/themes/jewelry/popupbrowserbox_medium.xml",
+ "data/themes/jewelry/popupbrowserbox_xhigh.xml",
+ "data/themes/jewelry/popupbrowserbox_xxhigh.xml",
+ "data/themes/jewelry/popuplist.xml",
+ "data/themes/jewelry/popupmenu.xml",
+ "data/themes/jewelry/popupmenu_high.xml",
+ "data/themes/jewelry/popupmenu_medium.xml",
+ "data/themes/jewelry/popupmenu_xhigh.xml",
+ "data/themes/jewelry/popupmenu_xxhigh.xml",
+ "data/themes/jewelry/progressbar.xml",
+ "data/themes/jewelry/quests.xml",
+ "data/themes/jewelry/radio.xml",
+ "data/themes/jewelry/resize.xml",
+ "data/themes/jewelry/scroll.xml",
+ "data/themes/jewelry/scroll_background.xml",
+ "data/themes/jewelry/scroll_hbackground.xml",
+ "data/themes/jewelry/scroll_highlighted.xml",
+ "data/themes/jewelry/scroll_vbackground.xml",
+ "data/themes/jewelry/scrollbuttons.xml",
+ "data/themes/jewelry/scrollbuttons_pressed.xml",
+ "data/themes/jewelry/sell.xml",
+ "data/themes/jewelry/server.xml",
+ "data/themes/jewelry/serverinfo.xml",
+ "data/themes/jewelry/serverslistbox.xml",
+ "data/themes/jewelry/shop.xml",
+ "data/themes/jewelry/shoplistbox.xml",
+ "data/themes/jewelry/skilllistbox.xml",
+ "data/themes/jewelry/skillpopup.xml",
+ "data/themes/jewelry/skillrectanglelistbox.xml",
+ "data/themes/jewelry/slider.xml",
+ "data/themes/jewelry/slider_highlighted.xml",
+ "data/themes/jewelry/social.xml",
+ "data/themes/jewelry/spells.xml",
+ "data/themes/jewelry/status.xml",
+ "data/themes/jewelry/tab.xml",
+ "data/themes/jewelry/tab_highlighted.xml",
+ "data/themes/jewelry/tab_selected.xml",
+ "data/themes/jewelry/tab_unused.xml",
+ "data/themes/jewelry/textfield.xml",
+ "data/themes/jewelry/window.png",
+ "data/themes/jewelry/window.xml",
+ "data/themes/jewelry/windowmenu.xml",
+ "data/themes/jewelry/world.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/themes/jewelry",
+ "source" : "data/themes/jewelry"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes.jewelry-simple-e194384aa44d6104e2fd.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes.jewelry-simple-e194384aa44d6104e2fd.json new file mode 100644 index 000000000..11673d22a --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes.jewelry-simple-e194384aa44d6104e2fd.json @@ -0,0 +1,162 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/themes/jewelry-simple/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 124,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/themes/jewelry-simple",
+ "paths" :
+ [
+ "data/themes/jewelry-simple/avatarlistbox.xml",
+ "data/themes/jewelry-simple/beingpopup.xml",
+ "data/themes/jewelry-simple/browserbox.xml",
+ "data/themes/jewelry-simple/button.xml",
+ "data/themes/jewelry-simple/button_disabled.xml",
+ "data/themes/jewelry-simple/button_highlighted.xml",
+ "data/themes/jewelry-simple/button_pressed.xml",
+ "data/themes/jewelry-simple/buttonpin.xml",
+ "data/themes/jewelry-simple/buttonpin_disabled.xml",
+ "data/themes/jewelry-simple/buttonpin_highlighted.xml",
+ "data/themes/jewelry-simple/buttonpin_pressed.xml",
+ "data/themes/jewelry-simple/buy.xml",
+ "data/themes/jewelry-simple/charcreate.xml",
+ "data/themes/jewelry-simple/CHANGELOG.txt",
+ "data/themes/jewelry-simple/chat.xml",
+ "data/themes/jewelry-simple/checkbox.xml",
+ "data/themes/jewelry-simple/circle-off.xml",
+ "data/themes/jewelry-simple/circle-on.xml",
+ "data/themes/jewelry-simple/colors.xml",
+ "data/themes/jewelry-simple/complete_icon.xml",
+ "data/themes/jewelry-simple/cutin.xml",
+ "data/themes/jewelry-simple/dbutton.xml",
+ "data/themes/jewelry-simple/didyouknow.xml",
+ "data/themes/jewelry-simple/dpad.xml",
+ "data/themes/jewelry-simple/dropdown.xml",
+ "data/themes/jewelry-simple/dropdown_background.xml",
+ "data/themes/jewelry-simple/dropdown_pressed.xml",
+ "data/themes/jewelry-simple/drops.xml",
+ "data/themes/jewelry-simple/edit.xml",
+ "data/themes/jewelry-simple/emotes.xml",
+ "data/themes/jewelry-simple/emotetabs.xml",
+ "data/themes/jewelry-simple/equipment.xml",
+ "data/themes/jewelry-simple/equipment_background.xml",
+ "data/themes/jewelry-simple/equipmentbox.png",
+ "data/themes/jewelry-simple/extendedlistbox.xml",
+ "data/themes/jewelry-simple/extendedlistbox_high.xml",
+ "data/themes/jewelry-simple/extendedlistbox_medium.xml",
+ "data/themes/jewelry-simple/extendedlistbox_xhigh.xml",
+ "data/themes/jewelry-simple/extendedlistbox_xxhigh.xml",
+ "data/themes/jewelry-simple/help.xml",
+ "data/themes/jewelry-simple/incomplete_icon.xml",
+ "data/themes/jewelry-simple/info.xml",
+ "data/themes/jewelry-simple/inventory.xml",
+ "data/themes/jewelry-simple/inventory_cell2.xml",
+ "data/themes/jewelry-simple/item_selection.xml",
+ "data/themes/jewelry-simple/itemcontainer.xml",
+ "data/themes/jewelry-simple/itempopup.xml",
+ "data/themes/jewelry-simple/items.xml",
+ "data/themes/jewelry-simple/keyboard_icon.xml",
+ "data/themes/jewelry-simple/keyboard_icon_high.xml",
+ "data/themes/jewelry-simple/keyboard_icon_medium.xml",
+ "data/themes/jewelry-simple/keyboard_icon_xhigh.xml",
+ "data/themes/jewelry-simple/keyboard_icon_xxhigh.xml",
+ "data/themes/jewelry-simple/LICENSE.txt",
+ "data/themes/jewelry-simple/listbox.xml",
+ "data/themes/jewelry-simple/listbox_high.xml",
+ "data/themes/jewelry-simple/listbox_medium.xml",
+ "data/themes/jewelry-simple/listbox_xhigh.xml",
+ "data/themes/jewelry-simple/listbox_xxhigh.xml",
+ "data/themes/jewelry-simple/login.xml",
+ "data/themes/jewelry-simple/mailedit.xml",
+ "data/themes/jewelry-simple/map.xml",
+ "data/themes/jewelry-simple/ministatus.xml",
+ "data/themes/jewelry-simple/mouse.png",
+ "data/themes/jewelry-simple/npc.xml",
+ "data/themes/jewelry-simple/ok.xml",
+ "data/themes/jewelry-simple/onlinebrowserbox.xml",
+ "data/themes/jewelry-simple/outfits.xml",
+ "data/themes/jewelry-simple/pin.xml",
+ "data/themes/jewelry-simple/playerbox.xml",
+ "data/themes/jewelry-simple/playerboxselected.xml",
+ "data/themes/jewelry-simple/popup.xml",
+ "data/themes/jewelry-simple/popup_high.xml",
+ "data/themes/jewelry-simple/popup_xhigh.xml",
+ "data/themes/jewelry-simple/popup_xxhigh.xml",
+ "data/themes/jewelry-simple/popupbrowserbox.xml",
+ "data/themes/jewelry-simple/popupbrowserbox_high.xml",
+ "data/themes/jewelry-simple/popupbrowserbox_medium.xml",
+ "data/themes/jewelry-simple/popupbrowserbox_xhigh.xml",
+ "data/themes/jewelry-simple/popupbrowserbox_xxhigh.xml",
+ "data/themes/jewelry-simple/popuplist.xml",
+ "data/themes/jewelry-simple/popupmenu.xml",
+ "data/themes/jewelry-simple/popupmenu_high.xml",
+ "data/themes/jewelry-simple/popupmenu_medium.xml",
+ "data/themes/jewelry-simple/popupmenu_xhigh.xml",
+ "data/themes/jewelry-simple/popupmenu_xxhigh.xml",
+ "data/themes/jewelry-simple/progressbar.xml",
+ "data/themes/jewelry-simple/quests.xml",
+ "data/themes/jewelry-simple/radio.xml",
+ "data/themes/jewelry-simple/resize.xml",
+ "data/themes/jewelry-simple/scroll.xml",
+ "data/themes/jewelry-simple/scroll_background.xml",
+ "data/themes/jewelry-simple/scroll_hbackground.xml",
+ "data/themes/jewelry-simple/scroll_highlighted.xml",
+ "data/themes/jewelry-simple/scroll_vbackground.xml",
+ "data/themes/jewelry-simple/scrollbuttons.xml",
+ "data/themes/jewelry-simple/scrollbuttons_pressed.xml",
+ "data/themes/jewelry-simple/sell.xml",
+ "data/themes/jewelry-simple/server.xml",
+ "data/themes/jewelry-simple/serverinfo.xml",
+ "data/themes/jewelry-simple/serverslistbox.xml",
+ "data/themes/jewelry-simple/shop.xml",
+ "data/themes/jewelry-simple/shoplistbox.xml",
+ "data/themes/jewelry-simple/skilllistbox.xml",
+ "data/themes/jewelry-simple/skillpopup.xml",
+ "data/themes/jewelry-simple/skillrectanglelistbox.xml",
+ "data/themes/jewelry-simple/slider.xml",
+ "data/themes/jewelry-simple/slider_highlighted.xml",
+ "data/themes/jewelry-simple/social.xml",
+ "data/themes/jewelry-simple/spells.xml",
+ "data/themes/jewelry-simple/status.xml",
+ "data/themes/jewelry-simple/tab.xml",
+ "data/themes/jewelry-simple/tab_highlighted.xml",
+ "data/themes/jewelry-simple/tab_selected.xml",
+ "data/themes/jewelry-simple/tab_unused.xml",
+ "data/themes/jewelry-simple/textfield.xml",
+ "data/themes/jewelry-simple/window.png",
+ "data/themes/jewelry-simple/window.xml",
+ "data/themes/jewelry-simple/windowmenu.xml",
+ "data/themes/jewelry-simple/world.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/themes/jewelry-simple",
+ "source" : "data/themes/jewelry-simple"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes.mana-8a7dad0327bd07fbbb64.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes.mana-8a7dad0327bd07fbbb64.json new file mode 100644 index 000000000..9cdd06a6c --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes.mana-8a7dad0327bd07fbbb64.json @@ -0,0 +1,61 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/themes/mana/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 23,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/themes/mana",
+ "paths" :
+ [
+ "data/themes/mana/colors.xml",
+ "data/themes/mana/emotetabs.xml",
+ "data/themes/mana/info.xml",
+ "data/themes/mana/mouse.png",
+ "data/themes/mana/npc.xml",
+ "data/themes/mana/quests.xml",
+ "data/themes/mana/social.xml",
+ "data/themes/mana/target-cursor-in-range-l.png",
+ "data/themes/mana/target-cursor-in-range-l.xml",
+ "data/themes/mana/target-cursor-in-range-m.png",
+ "data/themes/mana/target-cursor-in-range-m.xml",
+ "data/themes/mana/target-cursor-in-range-s.png",
+ "data/themes/mana/target-cursor-in-range-s.xml",
+ "data/themes/mana/target-cursor-normal-l.png",
+ "data/themes/mana/target-cursor-normal-l.xml",
+ "data/themes/mana/target-cursor-normal-m.png",
+ "data/themes/mana/target-cursor-normal-m.xml",
+ "data/themes/mana/target-cursor-normal-s.png",
+ "data/themes/mana/target-cursor-normal-s.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/themes/mana",
+ "source" : "data/themes/mana"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes.pink-90ffa10a328708971cfd.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes.pink-90ffa10a328708971cfd.json new file mode 100644 index 000000000..631a80172 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes.pink-90ffa10a328708971cfd.json @@ -0,0 +1,68 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/themes/pink/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 30,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/themes/pink",
+ "paths" :
+ [
+ "data/themes/pink/bubble.png",
+ "data/themes/pink/buy.xml",
+ "data/themes/pink/colors.xml",
+ "data/themes/pink/cutin.xml",
+ "data/themes/pink/emotes.xml",
+ "data/themes/pink/equipment.xml",
+ "data/themes/pink/info.xml",
+ "data/themes/pink/inventory.xml",
+ "data/themes/pink/items.xml",
+ "data/themes/pink/mailedit.xml",
+ "data/themes/pink/npc.xml",
+ "data/themes/pink/ok.xml",
+ "data/themes/pink/outfits.xml",
+ "data/themes/pink/popup.xml",
+ "data/themes/pink/progress-indicator.png",
+ "data/themes/pink/progressbar.xml",
+ "data/themes/pink/quests.xml",
+ "data/themes/pink/sell.xml",
+ "data/themes/pink/server.xml",
+ "data/themes/pink/serverinfo.xml",
+ "data/themes/pink/shop.xml",
+ "data/themes/pink/spells.xml",
+ "data/themes/pink/unknown-item.png",
+ "data/themes/pink/window.png",
+ "data/themes/pink/window.xml",
+ "data/themes/pink/world.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/themes/pink",
+ "source" : "data/themes/pink"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes.unity-bf0e62012d97036c890e.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes.unity-bf0e62012d97036c890e.json new file mode 100644 index 000000000..25b4a91fd --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes.unity-bf0e62012d97036c890e.json @@ -0,0 +1,67 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/themes/unity/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 29,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/themes/unity",
+ "paths" :
+ [
+ "data/themes/unity/buy.xml",
+ "data/themes/unity/char.xml",
+ "data/themes/unity/colors.xml",
+ "data/themes/unity/cutin.xml",
+ "data/themes/unity/emotes.xml",
+ "data/themes/unity/equipment.xml",
+ "data/themes/unity/info.xml",
+ "data/themes/unity/inventory.xml",
+ "data/themes/unity/items.xml",
+ "data/themes/unity/mailedit.xml",
+ "data/themes/unity/npc.xml",
+ "data/themes/unity/ok.xml",
+ "data/themes/unity/outfits.xml",
+ "data/themes/unity/popup.xml",
+ "data/themes/unity/progressbar.xml",
+ "data/themes/unity/quests.xml",
+ "data/themes/unity/sell.xml",
+ "data/themes/unity/server.xml",
+ "data/themes/unity/serverinfo.xml",
+ "data/themes/unity/shop.xml",
+ "data/themes/unity/social.xml",
+ "data/themes/unity/spells.xml",
+ "data/themes/unity/window.png",
+ "data/themes/unity/window.xml",
+ "data/themes/unity/world.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/themes/unity",
+ "source" : "data/themes/unity"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.themes.wood-8f74831f2374838b699a.json b/out/build/default/.cmake/api/v1/reply/directory-data.themes.wood-8f74831f2374838b699a.json new file mode 100644 index 000000000..e47dca63f --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.themes.wood-8f74831f2374838b699a.json @@ -0,0 +1,67 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/themes/wood/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 29,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/themes/wood",
+ "paths" :
+ [
+ "data/themes/wood/buy.xml",
+ "data/themes/wood/colors.xml",
+ "data/themes/wood/cutin.xml",
+ "data/themes/wood/emotes.xml",
+ "data/themes/wood/equipment.xml",
+ "data/themes/wood/info.xml",
+ "data/themes/wood/inventory.xml",
+ "data/themes/wood/item_shortcut_bgr.png",
+ "data/themes/wood/items.xml",
+ "data/themes/wood/mailedit.xml",
+ "data/themes/wood/mouse.png",
+ "data/themes/wood/npc.xml",
+ "data/themes/wood/ok.xml",
+ "data/themes/wood/outfits.xml",
+ "data/themes/wood/popup.xml",
+ "data/themes/wood/progressbar.xml",
+ "data/themes/wood/quests.xml",
+ "data/themes/wood/sell.xml",
+ "data/themes/wood/server.xml",
+ "data/themes/wood/serverinfo.xml",
+ "data/themes/wood/shop.xml",
+ "data/themes/wood/spells.xml",
+ "data/themes/wood/window.png",
+ "data/themes/wood/window.xml",
+ "data/themes/wood/world.xml"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/themes/wood",
+ "source" : "data/themes/wood"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.translations-d88c36a52c7c29297730.json b/out/build/default/.cmake/api/v1/reply/directory-data.translations-d88c36a52c7c29297730.json new file mode 100644 index 000000000..44f78b05e --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.translations-d88c36a52c7c29297730.json @@ -0,0 +1,14 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" : [],
+ "files" : [],
+ "nodes" : []
+ },
+ "installers" : [],
+ "paths" :
+ {
+ "build" : "data/translations",
+ "source" : "data/translations"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-data.translations.test-6837905936fac209a61d.json b/out/build/default/.cmake/api/v1/reply/directory-data.translations.test-6837905936fac209a61d.json new file mode 100644 index 000000000..4bfc939a7 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-data.translations.test-6837905936fac209a61d.json @@ -0,0 +1,53 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "data/translations/help/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 15,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : "./data/translations/help",
+ "paths" :
+ [
+ "data/translations/help/ca.po",
+ "data/translations/help/cs.po",
+ "data/translations/help/de.po",
+ "data/translations/help/es.po",
+ "data/translations/help/fr.po",
+ "data/translations/help/it.po",
+ "data/translations/help/nl_BE.po",
+ "data/translations/help/pl.po",
+ "data/translations/help/pt_BR.po",
+ "data/translations/help/ru.po",
+ "data/translations/help/zh_CN.po"
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "data/translations/test",
+ "source" : "data/translations/help"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-po-c2bc98b28e8970332583.json b/out/build/default/.cmake/api/v1/reply/directory-po-c2bc98b28e8970332583.json new file mode 100644 index 000000000..2c4a88e29 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-po-c2bc98b28e8970332583.json @@ -0,0 +1,471 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL",
+ "MANAPLUS_GETTEXT_CREATE_TRANSLATIONS"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 81,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 33,
+ "parent" : 1
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 2,
+ "component" : "Unspecified",
+ "destination" : "share/locale/ca/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/ca.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 3,
+ "component" : "Unspecified",
+ "destination" : "share/locale/cs/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/cs.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 4,
+ "component" : "Unspecified",
+ "destination" : "share/locale/de/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/de.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 5,
+ "component" : "Unspecified",
+ "destination" : "share/locale/eo/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/eo.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 6,
+ "component" : "Unspecified",
+ "destination" : "share/locale/es/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/es.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 7,
+ "component" : "Unspecified",
+ "destination" : "share/locale/fi/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/fi.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 8,
+ "component" : "Unspecified",
+ "destination" : "share/locale/fr/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/fr.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 9,
+ "component" : "Unspecified",
+ "destination" : "share/locale/id/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/id.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 10,
+ "component" : "Unspecified",
+ "destination" : "share/locale/it/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/it.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 11,
+ "component" : "Unspecified",
+ "destination" : "share/locale/ja/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/ja.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 12,
+ "component" : "Unspecified",
+ "destination" : "share/locale/nl/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/nl.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 13,
+ "component" : "Unspecified",
+ "destination" : "share/locale/nl_BE/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/nl_BE.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 14,
+ "component" : "Unspecified",
+ "destination" : "share/locale/pl/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/pl.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 15,
+ "component" : "Unspecified",
+ "destination" : "share/locale/pt/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/pt.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 16,
+ "component" : "Unspecified",
+ "destination" : "share/locale/pt_BR/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/pt_BR.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 17,
+ "component" : "Unspecified",
+ "destination" : "share/locale/ru/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/ru.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 18,
+ "component" : "Unspecified",
+ "destination" : "share/locale/sr/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/sr.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 19,
+ "component" : "Unspecified",
+ "destination" : "share/locale/sv/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/sv.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 20,
+ "component" : "Unspecified",
+ "destination" : "share/locale/sv_SE/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/sv_SE.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 21,
+ "component" : "Unspecified",
+ "destination" : "share/locale/tr/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/tr.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 22,
+ "component" : "Unspecified",
+ "destination" : "share/locale/uk/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/uk.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 23,
+ "component" : "Unspecified",
+ "destination" : "share/locale/zh_CN/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/zh_CN.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ },
+ {
+ "backtrace" : 24,
+ "component" : "Unspecified",
+ "destination" : "share/locale/zh_HK/LC_MESSAGES",
+ "paths" :
+ [
+ {
+ "from" : "out/build/default/po/zh_HK.gmo",
+ "to" : "manaplus.mo"
+ }
+ ],
+ "type" : "file"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/directory-src-5b1ea8a58551ac3dfd35.json b/out/build/default/.cmake/api/v1/reply/directory-src-5b1ea8a58551ac3dfd35.json new file mode 100644 index 000000000..01513779c --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/directory-src-5b1ea8a58551ac3dfd35.json @@ -0,0 +1,45 @@ +{
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "INSTALL"
+ ],
+ "files" :
+ [
+ "src/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 2303,
+ "parent" : 0
+ }
+ ]
+ },
+ "installers" :
+ [
+ {
+ "backtrace" : 1,
+ "component" : "Unspecified",
+ "destination" : ".",
+ "paths" :
+ [
+ "src/manaplus.exe"
+ ],
+ "targetId" : "manaplus::@145eef247bfb46b6828c",
+ "targetIndex" : 0,
+ "type" : "target"
+ }
+ ],
+ "paths" :
+ {
+ "build" : "src",
+ "source" : "src"
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/index-2025-07-01T23-26-29-0417.json b/out/build/default/.cmake/api/v1/reply/index-2025-07-01T23-26-29-0417.json new file mode 100644 index 000000000..5ddefe189 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/index-2025-07-01T23-26-29-0417.json @@ -0,0 +1,132 @@ +{
+ "cmake" :
+ {
+ "generator" :
+ {
+ "multiConfig" : false,
+ "name" : "Ninja"
+ },
+ "paths" :
+ {
+ "cmake" : "C:/msys64/ucrt64/bin/cmake.exe",
+ "cpack" : "C:/msys64/ucrt64/bin/cpack.exe",
+ "ctest" : "C:/msys64/ucrt64/bin/ctest.exe",
+ "root" : "C:/msys64/ucrt64/share/cmake"
+ },
+ "version" :
+ {
+ "isDirty" : false,
+ "major" : 4,
+ "minor" : 0,
+ "patch" : 3,
+ "string" : "4.0.3",
+ "suffix" : ""
+ }
+ },
+ "objects" :
+ [
+ {
+ "jsonFile" : "codemodel-v2-02703a51554e681a3d0a.json",
+ "kind" : "codemodel",
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 8
+ }
+ },
+ {
+ "jsonFile" : "cache-v2-99b7edfe565710057e5e.json",
+ "kind" : "cache",
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 0
+ }
+ },
+ {
+ "jsonFile" : "cmakeFiles-v1-3670c4c94176de1990e9.json",
+ "kind" : "cmakeFiles",
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 1
+ }
+ },
+ {
+ "jsonFile" : "toolchains-v1-1638f882dbbd76d8e5b6.json",
+ "kind" : "toolchains",
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 0
+ }
+ }
+ ],
+ "reply" :
+ {
+ "client-vscode" :
+ {
+ "query.json" :
+ {
+ "requests" :
+ [
+ {
+ "kind" : "cache",
+ "version" : 2
+ },
+ {
+ "kind" : "codemodel",
+ "version" : 2
+ },
+ {
+ "kind" : "toolchains",
+ "version" : 1
+ },
+ {
+ "kind" : "cmakeFiles",
+ "version" : 1
+ }
+ ],
+ "responses" :
+ [
+ {
+ "jsonFile" : "cache-v2-99b7edfe565710057e5e.json",
+ "kind" : "cache",
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 0
+ }
+ },
+ {
+ "jsonFile" : "codemodel-v2-02703a51554e681a3d0a.json",
+ "kind" : "codemodel",
+ "version" :
+ {
+ "major" : 2,
+ "minor" : 8
+ }
+ },
+ {
+ "jsonFile" : "toolchains-v1-1638f882dbbd76d8e5b6.json",
+ "kind" : "toolchains",
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 0
+ }
+ },
+ {
+ "jsonFile" : "cmakeFiles-v1-3670c4c94176de1990e9.json",
+ "kind" : "cmakeFiles",
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 1
+ }
+ }
+ ]
+ }
+ }
+ }
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-manaplus-ff5dc498792527ada14f.json b/out/build/default/.cmake/api/v1/reply/target-manaplus-ff5dc498792527ada14f.json new file mode 100644 index 000000000..c4a13682c --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-manaplus-ff5dc498792527ada14f.json @@ -0,0 +1,13094 @@ +{
+ "artifacts" :
+ [
+ {
+ "path" : "src/manaplus.exe"
+ },
+ {
+ "path" : "src/manaplus.pdb"
+ }
+ ],
+ "backtrace" : 1,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_EXECUTABLE",
+ "INSTALL",
+ "TARGET_LINK_LIBRARIES",
+ "INCLUDE_DIRECTORIES"
+ ],
+ "files" :
+ [
+ "src/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 2272,
+ "parent" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 2303,
+ "parent" : 0
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 2293,
+ "parent" : 0
+ },
+ {
+ "command" : 3,
+ "file" : 0,
+ "line" : 113,
+ "parent" : 0
+ },
+ {
+ "command" : 3,
+ "file" : 0,
+ "line" : 116,
+ "parent" : 0
+ },
+ {
+ "command" : 3,
+ "file" : 0,
+ "line" : 135,
+ "parent" : 0
+ }
+ ]
+ },
+ "compileGroups" :
+ [
+ {
+ "compileCommandFragments" :
+ [
+ {
+ "fragment" : " -DPACKAGE_NAME=\\\"MANAPLUS\\\" -DPACKAGE_VERSION=\\\"1.0.0\\\" -DPKG_DATADIR=\\\"MANAPLUS/\\\" -DLOCALEDIR=\\\"locale/\\\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL"
+ }
+ ],
+ "includes" :
+ [
+ {
+ "backtrace" : 4,
+ "path" : "C:/msys64/home/laptop/verse/src"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/SDL2"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/libpng16"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/rav1e"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/svt-av1"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/webp"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/opus"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/freetype2"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/harfbuzz"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/glib-2.0"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/lib/glib-2.0/include"
+ },
+ {
+ "backtrace" : 6,
+ "path" : "C:/msys64/ucrt64/include/libxml2"
+ }
+ ],
+ "language" : "CXX",
+ "sourceIndexes" :
+ [
+ 0,
+ 5,
+ 7,
+ 9,
+ 12,
+ 14,
+ 17,
+ 19,
+ 21,
+ 23,
+ 25,
+ 27,
+ 30,
+ 32,
+ 34,
+ 36,
+ 38,
+ 41,
+ 43,
+ 45,
+ 47,
+ 49,
+ 52,
+ 54,
+ 56,
+ 60,
+ 64,
+ 73,
+ 75,
+ 77,
+ 79,
+ 81,
+ 83,
+ 85,
+ 87,
+ 89,
+ 91,
+ 93,
+ 95,
+ 97,
+ 99,
+ 101,
+ 103,
+ 105,
+ 107,
+ 109,
+ 111,
+ 113,
+ 115,
+ 121,
+ 124,
+ 126,
+ 128,
+ 132,
+ 136,
+ 138,
+ 140,
+ 142,
+ 144,
+ 146,
+ 148,
+ 150,
+ 152,
+ 154,
+ 157,
+ 159,
+ 161,
+ 163,
+ 165,
+ 167,
+ 169,
+ 171,
+ 173,
+ 175,
+ 177,
+ 181,
+ 186,
+ 188,
+ 202,
+ 204,
+ 206,
+ 208,
+ 210,
+ 213,
+ 220,
+ 222,
+ 224,
+ 226,
+ 228,
+ 230,
+ 232,
+ 235,
+ 237,
+ 239,
+ 241,
+ 243,
+ 245,
+ 247,
+ 249,
+ 251,
+ 253,
+ 256,
+ 258,
+ 260,
+ 262,
+ 264,
+ 266,
+ 268,
+ 270,
+ 272,
+ 274,
+ 276,
+ 278,
+ 280,
+ 284,
+ 286,
+ 288,
+ 290,
+ 292,
+ 294,
+ 296,
+ 298,
+ 300,
+ 302,
+ 304,
+ 306,
+ 308,
+ 310,
+ 312,
+ 314,
+ 316,
+ 318,
+ 321,
+ 323,
+ 325,
+ 327,
+ 329,
+ 331,
+ 333,
+ 335,
+ 337,
+ 339,
+ 341,
+ 343,
+ 345,
+ 347,
+ 349,
+ 351,
+ 353,
+ 355,
+ 357,
+ 359,
+ 361,
+ 363,
+ 365,
+ 367,
+ 369,
+ 371,
+ 373,
+ 376,
+ 378,
+ 380,
+ 382,
+ 384,
+ 386,
+ 388,
+ 390,
+ 392,
+ 394,
+ 396,
+ 398,
+ 400,
+ 402,
+ 404,
+ 406,
+ 408,
+ 410,
+ 412,
+ 414,
+ 416,
+ 418,
+ 420,
+ 422,
+ 424,
+ 426,
+ 428,
+ 432,
+ 434,
+ 436,
+ 438,
+ 440,
+ 443,
+ 445,
+ 447,
+ 449,
+ 456,
+ 460,
+ 475,
+ 480,
+ 482,
+ 485,
+ 498,
+ 505,
+ 509,
+ 512,
+ 516,
+ 522,
+ 524,
+ 526,
+ 529,
+ 531,
+ 535,
+ 537,
+ 539,
+ 541,
+ 544,
+ 546,
+ 549,
+ 551,
+ 553,
+ 555,
+ 557,
+ 559,
+ 561,
+ 563,
+ 565,
+ 567,
+ 570,
+ 572,
+ 573,
+ 574,
+ 575,
+ 581,
+ 583,
+ 585,
+ 587,
+ 591,
+ 595,
+ 597,
+ 601,
+ 604,
+ 607,
+ 609,
+ 611,
+ 614,
+ 629,
+ 631,
+ 633,
+ 638,
+ 640,
+ 642,
+ 645,
+ 647,
+ 660,
+ 662,
+ 664,
+ 666,
+ 668,
+ 670,
+ 680,
+ 682,
+ 684,
+ 686,
+ 688,
+ 692,
+ 694,
+ 696,
+ 698,
+ 700,
+ 702,
+ 704,
+ 706,
+ 708,
+ 710,
+ 712,
+ 714,
+ 716,
+ 718,
+ 720,
+ 722,
+ 725,
+ 727,
+ 729,
+ 731,
+ 733,
+ 735,
+ 737,
+ 748,
+ 750,
+ 752,
+ 754,
+ 756,
+ 758,
+ 762,
+ 767,
+ 771,
+ 773,
+ 777,
+ 780,
+ 782,
+ 784,
+ 786,
+ 789,
+ 793,
+ 795,
+ 797,
+ 799,
+ 803,
+ 805,
+ 807,
+ 810,
+ 812,
+ 815,
+ 817,
+ 820,
+ 822,
+ 826,
+ 828,
+ 830,
+ 832,
+ 834,
+ 837,
+ 839,
+ 841,
+ 843,
+ 846,
+ 848,
+ 850,
+ 852,
+ 854,
+ 856,
+ 858,
+ 860,
+ 862,
+ 864,
+ 866,
+ 868,
+ 870,
+ 872,
+ 874,
+ 876,
+ 880,
+ 883,
+ 886,
+ 889,
+ 891,
+ 893,
+ 897,
+ 900,
+ 903,
+ 905,
+ 909,
+ 911,
+ 913,
+ 915,
+ 917,
+ 919,
+ 921,
+ 923,
+ 925,
+ 927,
+ 929,
+ 934,
+ 939,
+ 941,
+ 943,
+ 945,
+ 948,
+ 950,
+ 952,
+ 954,
+ 956,
+ 958,
+ 960,
+ 967,
+ 969,
+ 971,
+ 973,
+ 975,
+ 977,
+ 980,
+ 982,
+ 985,
+ 987,
+ 993,
+ 995,
+ 998,
+ 1000,
+ 1003,
+ 1005,
+ 1009,
+ 1011,
+ 1013,
+ 1015,
+ 1027,
+ 1029,
+ 1031,
+ 1033,
+ 1035,
+ 1037,
+ 1047,
+ 1049,
+ 1051,
+ 1053,
+ 1055,
+ 1057,
+ 1059,
+ 1064,
+ 1066,
+ 1068,
+ 1070,
+ 1072,
+ 1074,
+ 1080,
+ 1086,
+ 1092,
+ 1094,
+ 1097,
+ 1100,
+ 1105,
+ 1107,
+ 1109,
+ 1116,
+ 1121,
+ 1123,
+ 1125,
+ 1132,
+ 1134,
+ 1139,
+ 1143,
+ 1145,
+ 1147,
+ 1150,
+ 1153,
+ 1155,
+ 1158,
+ 1160,
+ 1164,
+ 1168,
+ 1174,
+ 1183,
+ 1185,
+ 1187,
+ 1190,
+ 1193,
+ 1196,
+ 1198,
+ 1200,
+ 1203,
+ 1205,
+ 1207,
+ 1217,
+ 1221,
+ 1224,
+ 1226,
+ 1228,
+ 1230,
+ 1232,
+ 1234,
+ 1236,
+ 1240,
+ 1242,
+ 1244,
+ 1246,
+ 1249,
+ 1306,
+ 1308,
+ 1310,
+ 1312,
+ 1314,
+ 1316,
+ 1318,
+ 1320,
+ 1324,
+ 1326,
+ 1329,
+ 1331,
+ 1358,
+ 1363,
+ 1366,
+ 1368,
+ 1370,
+ 1372,
+ 1388,
+ 1391,
+ 1396,
+ 1399,
+ 1401,
+ 1403,
+ 1405,
+ 1408,
+ 1414,
+ 1417,
+ 1418,
+ 1420,
+ 1421,
+ 1422,
+ 1423,
+ 1425,
+ 1427,
+ 1429,
+ 1431,
+ 1433,
+ 1435,
+ 1437,
+ 1439,
+ 1441,
+ 1443,
+ 1445,
+ 1447,
+ 1449,
+ 1451,
+ 1453,
+ 1455,
+ 1477,
+ 1479,
+ 1481,
+ 1483,
+ 1485,
+ 1487,
+ 1489,
+ 1491,
+ 1493,
+ 1495,
+ 1497,
+ 1499,
+ 1501,
+ 1503,
+ 1505,
+ 1507,
+ 1509,
+ 1511,
+ 1514,
+ 1516,
+ 1518,
+ 1520,
+ 1522,
+ 1524,
+ 1526,
+ 1528,
+ 1530,
+ 1532,
+ 1534,
+ 1536,
+ 1538,
+ 1540,
+ 1542,
+ 1544,
+ 1546,
+ 1548,
+ 1550,
+ 1552,
+ 1554,
+ 1556,
+ 1558,
+ 1560,
+ 1563,
+ 1565,
+ 1567,
+ 1569,
+ 1571,
+ 1573,
+ 1575,
+ 1577,
+ 1579,
+ 1581,
+ 1584,
+ 1586,
+ 1588,
+ 1590,
+ 1592,
+ 1595,
+ 1597,
+ 1599,
+ 1601,
+ 1603,
+ 1605,
+ 1607,
+ 1614,
+ 1616,
+ 1618,
+ 1620,
+ 1622,
+ 1624,
+ 1626,
+ 1628,
+ 1630,
+ 1633,
+ 1635,
+ 1637,
+ 1639,
+ 1641,
+ 1643,
+ 1645,
+ 1647,
+ 1649,
+ 1653,
+ 1655,
+ 1657,
+ 1659,
+ 1661,
+ 1663,
+ 1665,
+ 1667,
+ 1669,
+ 1672,
+ 1674,
+ 1676,
+ 1678,
+ 1680,
+ 1682,
+ 1684,
+ 1686,
+ 1688,
+ 1690,
+ 1692,
+ 1694,
+ 1696,
+ 1698,
+ 1700,
+ 1702,
+ 1704,
+ 1706,
+ 1708,
+ 1710,
+ 1712,
+ 1714,
+ 1716,
+ 1718,
+ 1720,
+ 1722,
+ 1724,
+ 1726,
+ 1728,
+ 1730,
+ 1732,
+ 1736,
+ 1738,
+ 1740,
+ 1742,
+ 1744,
+ 1746,
+ 1748,
+ 1750,
+ 1753,
+ 1755,
+ 1757,
+ 1761,
+ 1763,
+ 1765,
+ 1767,
+ 1769,
+ 1771,
+ 1773,
+ 1775,
+ 1777,
+ 1779,
+ 1781,
+ 1783,
+ 1785,
+ 1787,
+ 1789,
+ 1791,
+ 1793,
+ 1795,
+ 1797,
+ 1799,
+ 1801,
+ 1803,
+ 1806,
+ 1808,
+ 1810,
+ 1812,
+ 1814,
+ 1816,
+ 1818,
+ 1820,
+ 1822,
+ 1826,
+ 1828,
+ 1830,
+ 1832,
+ 1834,
+ 1836,
+ 1838,
+ 1840,
+ 1842,
+ 1844,
+ 1846,
+ 1848,
+ 1850,
+ 1852,
+ 1854,
+ 1856,
+ 1858,
+ 1860,
+ 1863,
+ 1865
+ ]
+ },
+ {
+ "compileCommandFragments" :
+ [
+ {
+ "fragment" : "-DPACKAGE_NAME=\\\"MANAPLUS\\\" -DPACKAGE_VERSION=\\\"1.0.0\\\" -DPKG_DATADIR=\\\"MANAPLUS/\\\" -DLOCALEDIR=\\\"locale/\\\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL"
+ }
+ ],
+ "includes" :
+ [
+ {
+ "backtrace" : 4,
+ "path" : "C:/msys64/home/laptop/verse/src"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/SDL2"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/libpng16"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/rav1e"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/svt-av1"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/webp"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/opus"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/freetype2"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/harfbuzz"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/include/glib-2.0"
+ },
+ {
+ "backtrace" : 5,
+ "path" : "C:/msys64/ucrt64/lib/glib-2.0/include"
+ },
+ {
+ "backtrace" : 6,
+ "path" : "C:/msys64/ucrt64/include/libxml2"
+ },
+ {
+ "backtrace" : 5,
+ "isSystem" : true,
+ "path" : "C:/msys64/ucrt64/include"
+ }
+ ],
+ "language" : "RC",
+ "sourceIndexes" :
+ [
+ 1671
+ ]
+ }
+ ],
+ "id" : "manaplus::@145eef247bfb46b6828c",
+ "install" :
+ {
+ "destinations" :
+ [
+ {
+ "backtrace" : 2,
+ "path" : "."
+ }
+ ],
+ "prefix" :
+ {
+ "path" : "C:/Program Files (x86)/MANAPLUS"
+ }
+ },
+ "link" :
+ {
+ "commandFragments" :
+ [
+ {
+ "fragment" : "-mwindows",
+ "role" : "flags"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lmingw32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2main",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2_gfx",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lmingw32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2main",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2_image",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lmingw32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2main",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2_mixer",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lmingw32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2main",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2_net",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lmingw32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2main",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2_ttf",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lmingw32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2main",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "C:\\msys64\\ucrt64\\lib\\libpng.dll.a",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "C:\\msys64\\ucrt64\\lib\\libz.dll.a",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "C:\\msys64\\ucrt64\\lib\\libz.dll.a",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "C:\\msys64\\ucrt64\\lib\\libcurl.dll.a",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "C:\\msys64\\ucrt64\\lib\\libxml2.dll.a",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lopengl32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lglu32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "C:\\msys64\\ucrt64\\lib\\libintl.dll.a",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lws2_32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lwinmm",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2_gfx",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2_image",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2_mixer",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2_net",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lSDL2_ttf",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "C:\\msys64\\ucrt64\\lib\\libpng.dll.a",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "C:\\msys64\\ucrt64\\lib\\libz.dll.a",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "C:\\msys64\\ucrt64\\lib\\libxml2.dll.a",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lopengl32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lglu32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "C:\\msys64\\ucrt64\\lib\\libintl.dll.a",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lws2_32",
+ "role" : "libraries"
+ },
+ {
+ "backtrace" : 3,
+ "fragment" : "-lwinmm",
+ "role" : "libraries"
+ },
+ {
+ "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32",
+ "role" : "libraries"
+ }
+ ],
+ "language" : "CXX"
+ },
+ "name" : "manaplus",
+ "nameOnDisk" : "manaplus.exe",
+ "paths" :
+ {
+ "build" : "src",
+ "source" : "src"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "Source Files",
+ "sourceIndexes" :
+ [
+ 0,
+ 5,
+ 7,
+ 9,
+ 12,
+ 14,
+ 17,
+ 19,
+ 21,
+ 23,
+ 25,
+ 27,
+ 30,
+ 32,
+ 34,
+ 36,
+ 38,
+ 41,
+ 43,
+ 45,
+ 47,
+ 49,
+ 52,
+ 54,
+ 56,
+ 60,
+ 64,
+ 73,
+ 75,
+ 77,
+ 79,
+ 81,
+ 83,
+ 85,
+ 87,
+ 89,
+ 91,
+ 93,
+ 95,
+ 97,
+ 99,
+ 101,
+ 103,
+ 105,
+ 107,
+ 109,
+ 111,
+ 113,
+ 115,
+ 121,
+ 124,
+ 126,
+ 128,
+ 132,
+ 136,
+ 138,
+ 140,
+ 142,
+ 144,
+ 146,
+ 148,
+ 150,
+ 152,
+ 154,
+ 157,
+ 159,
+ 161,
+ 163,
+ 165,
+ 167,
+ 169,
+ 171,
+ 173,
+ 175,
+ 177,
+ 181,
+ 186,
+ 188,
+ 202,
+ 204,
+ 206,
+ 208,
+ 210,
+ 213,
+ 220,
+ 222,
+ 224,
+ 226,
+ 228,
+ 230,
+ 232,
+ 235,
+ 237,
+ 239,
+ 241,
+ 243,
+ 245,
+ 247,
+ 249,
+ 251,
+ 253,
+ 256,
+ 258,
+ 260,
+ 262,
+ 264,
+ 266,
+ 268,
+ 270,
+ 272,
+ 274,
+ 276,
+ 278,
+ 280,
+ 284,
+ 286,
+ 288,
+ 290,
+ 292,
+ 294,
+ 296,
+ 298,
+ 300,
+ 302,
+ 304,
+ 306,
+ 308,
+ 310,
+ 312,
+ 314,
+ 316,
+ 318,
+ 321,
+ 323,
+ 325,
+ 327,
+ 329,
+ 331,
+ 333,
+ 335,
+ 337,
+ 339,
+ 341,
+ 343,
+ 345,
+ 347,
+ 349,
+ 351,
+ 353,
+ 355,
+ 357,
+ 359,
+ 361,
+ 363,
+ 365,
+ 367,
+ 369,
+ 371,
+ 373,
+ 376,
+ 378,
+ 380,
+ 382,
+ 384,
+ 386,
+ 388,
+ 390,
+ 392,
+ 394,
+ 396,
+ 398,
+ 400,
+ 402,
+ 404,
+ 406,
+ 408,
+ 410,
+ 412,
+ 414,
+ 416,
+ 418,
+ 420,
+ 422,
+ 424,
+ 426,
+ 428,
+ 432,
+ 434,
+ 436,
+ 438,
+ 440,
+ 443,
+ 445,
+ 447,
+ 449,
+ 456,
+ 460,
+ 475,
+ 480,
+ 482,
+ 485,
+ 498,
+ 505,
+ 509,
+ 512,
+ 516,
+ 522,
+ 524,
+ 526,
+ 529,
+ 531,
+ 535,
+ 537,
+ 539,
+ 541,
+ 544,
+ 546,
+ 549,
+ 551,
+ 553,
+ 555,
+ 557,
+ 559,
+ 561,
+ 563,
+ 565,
+ 567,
+ 570,
+ 572,
+ 573,
+ 574,
+ 575,
+ 581,
+ 583,
+ 585,
+ 587,
+ 591,
+ 595,
+ 597,
+ 601,
+ 604,
+ 607,
+ 609,
+ 611,
+ 614,
+ 629,
+ 631,
+ 633,
+ 638,
+ 640,
+ 642,
+ 645,
+ 647,
+ 660,
+ 662,
+ 664,
+ 666,
+ 668,
+ 670,
+ 680,
+ 682,
+ 684,
+ 686,
+ 688,
+ 692,
+ 694,
+ 696,
+ 698,
+ 700,
+ 702,
+ 704,
+ 706,
+ 708,
+ 710,
+ 712,
+ 714,
+ 716,
+ 718,
+ 720,
+ 722,
+ 725,
+ 727,
+ 729,
+ 731,
+ 733,
+ 735,
+ 737,
+ 748,
+ 750,
+ 752,
+ 754,
+ 756,
+ 758,
+ 762,
+ 767,
+ 771,
+ 773,
+ 777,
+ 780,
+ 782,
+ 784,
+ 786,
+ 789,
+ 793,
+ 795,
+ 797,
+ 799,
+ 803,
+ 805,
+ 807,
+ 810,
+ 812,
+ 815,
+ 817,
+ 820,
+ 822,
+ 826,
+ 828,
+ 830,
+ 832,
+ 834,
+ 837,
+ 839,
+ 841,
+ 843,
+ 846,
+ 848,
+ 850,
+ 852,
+ 854,
+ 856,
+ 858,
+ 860,
+ 862,
+ 864,
+ 866,
+ 868,
+ 870,
+ 872,
+ 874,
+ 876,
+ 880,
+ 883,
+ 886,
+ 889,
+ 891,
+ 893,
+ 897,
+ 900,
+ 903,
+ 905,
+ 909,
+ 911,
+ 913,
+ 915,
+ 917,
+ 919,
+ 921,
+ 923,
+ 925,
+ 927,
+ 929,
+ 934,
+ 939,
+ 941,
+ 943,
+ 945,
+ 948,
+ 950,
+ 952,
+ 954,
+ 956,
+ 958,
+ 960,
+ 967,
+ 969,
+ 971,
+ 973,
+ 975,
+ 977,
+ 980,
+ 982,
+ 985,
+ 987,
+ 993,
+ 995,
+ 998,
+ 1000,
+ 1003,
+ 1005,
+ 1009,
+ 1011,
+ 1013,
+ 1015,
+ 1027,
+ 1029,
+ 1031,
+ 1033,
+ 1035,
+ 1037,
+ 1047,
+ 1049,
+ 1051,
+ 1053,
+ 1055,
+ 1057,
+ 1059,
+ 1064,
+ 1066,
+ 1068,
+ 1070,
+ 1072,
+ 1074,
+ 1080,
+ 1086,
+ 1092,
+ 1094,
+ 1097,
+ 1100,
+ 1105,
+ 1107,
+ 1109,
+ 1116,
+ 1121,
+ 1123,
+ 1125,
+ 1132,
+ 1134,
+ 1139,
+ 1143,
+ 1145,
+ 1147,
+ 1150,
+ 1153,
+ 1155,
+ 1158,
+ 1160,
+ 1164,
+ 1168,
+ 1174,
+ 1183,
+ 1185,
+ 1187,
+ 1190,
+ 1193,
+ 1196,
+ 1198,
+ 1200,
+ 1203,
+ 1205,
+ 1207,
+ 1217,
+ 1221,
+ 1224,
+ 1226,
+ 1228,
+ 1230,
+ 1232,
+ 1234,
+ 1236,
+ 1240,
+ 1242,
+ 1244,
+ 1246,
+ 1249,
+ 1306,
+ 1308,
+ 1310,
+ 1312,
+ 1314,
+ 1316,
+ 1318,
+ 1320,
+ 1324,
+ 1326,
+ 1329,
+ 1331,
+ 1358,
+ 1363,
+ 1366,
+ 1368,
+ 1370,
+ 1372,
+ 1388,
+ 1391,
+ 1396,
+ 1399,
+ 1401,
+ 1403,
+ 1405,
+ 1408,
+ 1414,
+ 1417,
+ 1418,
+ 1420,
+ 1421,
+ 1422,
+ 1423,
+ 1425,
+ 1427,
+ 1429,
+ 1431,
+ 1433,
+ 1435,
+ 1437,
+ 1439,
+ 1441,
+ 1443,
+ 1445,
+ 1447,
+ 1449,
+ 1451,
+ 1453,
+ 1455,
+ 1477,
+ 1479,
+ 1481,
+ 1483,
+ 1485,
+ 1487,
+ 1489,
+ 1491,
+ 1493,
+ 1495,
+ 1497,
+ 1499,
+ 1501,
+ 1503,
+ 1505,
+ 1507,
+ 1509,
+ 1511,
+ 1514,
+ 1516,
+ 1518,
+ 1520,
+ 1522,
+ 1524,
+ 1526,
+ 1528,
+ 1530,
+ 1532,
+ 1534,
+ 1536,
+ 1538,
+ 1540,
+ 1542,
+ 1544,
+ 1546,
+ 1548,
+ 1550,
+ 1552,
+ 1554,
+ 1556,
+ 1558,
+ 1560,
+ 1563,
+ 1565,
+ 1567,
+ 1569,
+ 1571,
+ 1573,
+ 1575,
+ 1577,
+ 1579,
+ 1581,
+ 1584,
+ 1586,
+ 1588,
+ 1590,
+ 1592,
+ 1595,
+ 1597,
+ 1599,
+ 1601,
+ 1603,
+ 1605,
+ 1607,
+ 1614,
+ 1616,
+ 1618,
+ 1620,
+ 1622,
+ 1624,
+ 1626,
+ 1628,
+ 1630,
+ 1633,
+ 1635,
+ 1637,
+ 1639,
+ 1641,
+ 1643,
+ 1645,
+ 1647,
+ 1649,
+ 1653,
+ 1655,
+ 1657,
+ 1659,
+ 1661,
+ 1663,
+ 1665,
+ 1667,
+ 1669,
+ 1671,
+ 1672,
+ 1674,
+ 1676,
+ 1678,
+ 1680,
+ 1682,
+ 1684,
+ 1686,
+ 1688,
+ 1690,
+ 1692,
+ 1694,
+ 1696,
+ 1698,
+ 1700,
+ 1702,
+ 1704,
+ 1706,
+ 1708,
+ 1710,
+ 1712,
+ 1714,
+ 1716,
+ 1718,
+ 1720,
+ 1722,
+ 1724,
+ 1726,
+ 1728,
+ 1730,
+ 1732,
+ 1736,
+ 1738,
+ 1740,
+ 1742,
+ 1744,
+ 1746,
+ 1748,
+ 1750,
+ 1753,
+ 1755,
+ 1757,
+ 1761,
+ 1763,
+ 1765,
+ 1767,
+ 1769,
+ 1771,
+ 1773,
+ 1775,
+ 1777,
+ 1779,
+ 1781,
+ 1783,
+ 1785,
+ 1787,
+ 1789,
+ 1791,
+ 1793,
+ 1795,
+ 1797,
+ 1799,
+ 1801,
+ 1803,
+ 1806,
+ 1808,
+ 1810,
+ 1812,
+ 1814,
+ 1816,
+ 1818,
+ 1820,
+ 1822,
+ 1826,
+ 1828,
+ 1830,
+ 1832,
+ 1834,
+ 1836,
+ 1838,
+ 1840,
+ 1842,
+ 1844,
+ 1846,
+ 1848,
+ 1850,
+ 1852,
+ 1854,
+ 1856,
+ 1858,
+ 1860,
+ 1863,
+ 1865
+ ]
+ },
+ {
+ "name" : "Header Files",
+ "sourceIndexes" :
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 6,
+ 8,
+ 10,
+ 13,
+ 15,
+ 16,
+ 18,
+ 20,
+ 22,
+ 24,
+ 26,
+ 28,
+ 29,
+ 31,
+ 33,
+ 35,
+ 37,
+ 39,
+ 40,
+ 42,
+ 44,
+ 46,
+ 48,
+ 50,
+ 51,
+ 53,
+ 55,
+ 57,
+ 58,
+ 59,
+ 61,
+ 62,
+ 63,
+ 65,
+ 66,
+ 67,
+ 68,
+ 69,
+ 70,
+ 71,
+ 72,
+ 74,
+ 76,
+ 78,
+ 80,
+ 82,
+ 84,
+ 86,
+ 88,
+ 90,
+ 92,
+ 94,
+ 96,
+ 98,
+ 100,
+ 102,
+ 104,
+ 106,
+ 108,
+ 110,
+ 112,
+ 114,
+ 116,
+ 117,
+ 118,
+ 119,
+ 120,
+ 122,
+ 123,
+ 125,
+ 127,
+ 129,
+ 130,
+ 131,
+ 133,
+ 134,
+ 135,
+ 137,
+ 139,
+ 141,
+ 143,
+ 145,
+ 147,
+ 149,
+ 151,
+ 153,
+ 155,
+ 156,
+ 158,
+ 160,
+ 162,
+ 164,
+ 166,
+ 168,
+ 170,
+ 172,
+ 174,
+ 176,
+ 178,
+ 179,
+ 180,
+ 182,
+ 183,
+ 184,
+ 185,
+ 187,
+ 189,
+ 190,
+ 191,
+ 192,
+ 193,
+ 194,
+ 195,
+ 196,
+ 197,
+ 198,
+ 199,
+ 200,
+ 201,
+ 203,
+ 205,
+ 207,
+ 209,
+ 211,
+ 212,
+ 214,
+ 215,
+ 216,
+ 217,
+ 218,
+ 219,
+ 221,
+ 223,
+ 225,
+ 227,
+ 229,
+ 231,
+ 233,
+ 234,
+ 236,
+ 238,
+ 240,
+ 242,
+ 244,
+ 246,
+ 248,
+ 250,
+ 252,
+ 254,
+ 255,
+ 257,
+ 259,
+ 261,
+ 263,
+ 265,
+ 267,
+ 269,
+ 271,
+ 273,
+ 275,
+ 277,
+ 279,
+ 281,
+ 282,
+ 283,
+ 285,
+ 287,
+ 289,
+ 291,
+ 293,
+ 295,
+ 297,
+ 299,
+ 301,
+ 303,
+ 305,
+ 307,
+ 309,
+ 311,
+ 313,
+ 315,
+ 317,
+ 319,
+ 320,
+ 322,
+ 324,
+ 326,
+ 328,
+ 330,
+ 332,
+ 334,
+ 336,
+ 338,
+ 340,
+ 342,
+ 344,
+ 346,
+ 348,
+ 350,
+ 352,
+ 354,
+ 356,
+ 358,
+ 360,
+ 362,
+ 364,
+ 366,
+ 368,
+ 370,
+ 372,
+ 374,
+ 375,
+ 377,
+ 379,
+ 381,
+ 383,
+ 385,
+ 387,
+ 389,
+ 391,
+ 393,
+ 395,
+ 397,
+ 399,
+ 401,
+ 403,
+ 405,
+ 407,
+ 409,
+ 411,
+ 413,
+ 415,
+ 417,
+ 419,
+ 421,
+ 423,
+ 425,
+ 427,
+ 429,
+ 431,
+ 433,
+ 435,
+ 437,
+ 439,
+ 441,
+ 442,
+ 444,
+ 446,
+ 448,
+ 450,
+ 451,
+ 452,
+ 453,
+ 454,
+ 455,
+ 457,
+ 458,
+ 459,
+ 461,
+ 462,
+ 463,
+ 464,
+ 465,
+ 466,
+ 467,
+ 468,
+ 469,
+ 470,
+ 471,
+ 472,
+ 473,
+ 474,
+ 476,
+ 477,
+ 478,
+ 479,
+ 481,
+ 483,
+ 484,
+ 486,
+ 487,
+ 488,
+ 489,
+ 490,
+ 491,
+ 492,
+ 493,
+ 494,
+ 495,
+ 496,
+ 497,
+ 499,
+ 500,
+ 501,
+ 502,
+ 503,
+ 504,
+ 506,
+ 507,
+ 508,
+ 510,
+ 511,
+ 513,
+ 514,
+ 515,
+ 517,
+ 518,
+ 519,
+ 520,
+ 521,
+ 523,
+ 525,
+ 527,
+ 528,
+ 530,
+ 532,
+ 533,
+ 534,
+ 536,
+ 538,
+ 540,
+ 542,
+ 543,
+ 545,
+ 547,
+ 548,
+ 550,
+ 552,
+ 554,
+ 556,
+ 558,
+ 560,
+ 562,
+ 564,
+ 566,
+ 568,
+ 569,
+ 571,
+ 576,
+ 577,
+ 578,
+ 579,
+ 580,
+ 582,
+ 584,
+ 586,
+ 588,
+ 589,
+ 590,
+ 592,
+ 593,
+ 594,
+ 596,
+ 598,
+ 599,
+ 600,
+ 602,
+ 603,
+ 605,
+ 606,
+ 608,
+ 610,
+ 612,
+ 613,
+ 615,
+ 616,
+ 617,
+ 618,
+ 619,
+ 620,
+ 621,
+ 622,
+ 623,
+ 624,
+ 625,
+ 626,
+ 627,
+ 628,
+ 630,
+ 632,
+ 634,
+ 635,
+ 636,
+ 637,
+ 639,
+ 641,
+ 643,
+ 644,
+ 646,
+ 648,
+ 649,
+ 650,
+ 651,
+ 652,
+ 653,
+ 654,
+ 655,
+ 656,
+ 657,
+ 658,
+ 659,
+ 661,
+ 663,
+ 665,
+ 667,
+ 669,
+ 671,
+ 672,
+ 673,
+ 674,
+ 675,
+ 676,
+ 677,
+ 678,
+ 679,
+ 681,
+ 683,
+ 685,
+ 687,
+ 689,
+ 690,
+ 691,
+ 693,
+ 695,
+ 697,
+ 699,
+ 701,
+ 703,
+ 705,
+ 707,
+ 709,
+ 711,
+ 713,
+ 715,
+ 717,
+ 719,
+ 721,
+ 723,
+ 724,
+ 726,
+ 728,
+ 730,
+ 732,
+ 734,
+ 736,
+ 738,
+ 739,
+ 740,
+ 741,
+ 742,
+ 743,
+ 744,
+ 745,
+ 746,
+ 747,
+ 749,
+ 751,
+ 753,
+ 755,
+ 757,
+ 759,
+ 763,
+ 764,
+ 765,
+ 766,
+ 768,
+ 769,
+ 770,
+ 772,
+ 774,
+ 775,
+ 776,
+ 778,
+ 779,
+ 781,
+ 783,
+ 785,
+ 787,
+ 788,
+ 790,
+ 791,
+ 792,
+ 794,
+ 796,
+ 798,
+ 800,
+ 801,
+ 802,
+ 804,
+ 806,
+ 808,
+ 809,
+ 811,
+ 813,
+ 814,
+ 816,
+ 818,
+ 819,
+ 821,
+ 823,
+ 824,
+ 825,
+ 827,
+ 829,
+ 831,
+ 833,
+ 835,
+ 836,
+ 838,
+ 840,
+ 842,
+ 844,
+ 845,
+ 847,
+ 849,
+ 851,
+ 853,
+ 855,
+ 857,
+ 859,
+ 861,
+ 863,
+ 865,
+ 867,
+ 869,
+ 871,
+ 873,
+ 875,
+ 877,
+ 878,
+ 879,
+ 881,
+ 882,
+ 884,
+ 885,
+ 887,
+ 888,
+ 890,
+ 892,
+ 894,
+ 895,
+ 898,
+ 899,
+ 901,
+ 904,
+ 906,
+ 907,
+ 908,
+ 910,
+ 912,
+ 914,
+ 916,
+ 918,
+ 920,
+ 922,
+ 924,
+ 926,
+ 928,
+ 930,
+ 931,
+ 932,
+ 933,
+ 935,
+ 936,
+ 937,
+ 938,
+ 940,
+ 942,
+ 944,
+ 946,
+ 947,
+ 949,
+ 951,
+ 953,
+ 955,
+ 957,
+ 959,
+ 961,
+ 962,
+ 963,
+ 964,
+ 965,
+ 966,
+ 968,
+ 970,
+ 972,
+ 974,
+ 976,
+ 978,
+ 979,
+ 981,
+ 983,
+ 984,
+ 986,
+ 988,
+ 989,
+ 990,
+ 991,
+ 992,
+ 994,
+ 996,
+ 997,
+ 999,
+ 1001,
+ 1002,
+ 1004,
+ 1006,
+ 1007,
+ 1008,
+ 1010,
+ 1012,
+ 1014,
+ 1016,
+ 1017,
+ 1018,
+ 1019,
+ 1020,
+ 1021,
+ 1022,
+ 1023,
+ 1024,
+ 1025,
+ 1026,
+ 1028,
+ 1030,
+ 1032,
+ 1034,
+ 1036,
+ 1038,
+ 1039,
+ 1040,
+ 1041,
+ 1042,
+ 1043,
+ 1044,
+ 1045,
+ 1046,
+ 1048,
+ 1050,
+ 1052,
+ 1054,
+ 1056,
+ 1058,
+ 1060,
+ 1061,
+ 1062,
+ 1063,
+ 1065,
+ 1067,
+ 1069,
+ 1071,
+ 1073,
+ 1075,
+ 1076,
+ 1077,
+ 1078,
+ 1079,
+ 1081,
+ 1082,
+ 1083,
+ 1084,
+ 1085,
+ 1087,
+ 1088,
+ 1089,
+ 1090,
+ 1091,
+ 1093,
+ 1095,
+ 1096,
+ 1098,
+ 1099,
+ 1101,
+ 1102,
+ 1103,
+ 1104,
+ 1106,
+ 1108,
+ 1110,
+ 1111,
+ 1112,
+ 1113,
+ 1114,
+ 1115,
+ 1117,
+ 1118,
+ 1119,
+ 1120,
+ 1122,
+ 1124,
+ 1126,
+ 1127,
+ 1128,
+ 1129,
+ 1130,
+ 1131,
+ 1133,
+ 1135,
+ 1136,
+ 1137,
+ 1138,
+ 1140,
+ 1141,
+ 1142,
+ 1144,
+ 1146,
+ 1148,
+ 1149,
+ 1151,
+ 1152,
+ 1154,
+ 1156,
+ 1157,
+ 1159,
+ 1161,
+ 1162,
+ 1163,
+ 1165,
+ 1166,
+ 1167,
+ 1169,
+ 1170,
+ 1171,
+ 1172,
+ 1173,
+ 1175,
+ 1176,
+ 1177,
+ 1178,
+ 1179,
+ 1180,
+ 1181,
+ 1182,
+ 1184,
+ 1186,
+ 1188,
+ 1189,
+ 1191,
+ 1192,
+ 1194,
+ 1195,
+ 1197,
+ 1199,
+ 1201,
+ 1202,
+ 1204,
+ 1206,
+ 1208,
+ 1209,
+ 1210,
+ 1211,
+ 1212,
+ 1213,
+ 1214,
+ 1215,
+ 1216,
+ 1218,
+ 1219,
+ 1220,
+ 1222,
+ 1223,
+ 1225,
+ 1227,
+ 1229,
+ 1231,
+ 1233,
+ 1235,
+ 1237,
+ 1238,
+ 1239,
+ 1241,
+ 1243,
+ 1245,
+ 1247,
+ 1248,
+ 1250,
+ 1251,
+ 1252,
+ 1253,
+ 1254,
+ 1255,
+ 1256,
+ 1257,
+ 1258,
+ 1259,
+ 1260,
+ 1261,
+ 1262,
+ 1263,
+ 1264,
+ 1265,
+ 1266,
+ 1267,
+ 1268,
+ 1269,
+ 1270,
+ 1271,
+ 1272,
+ 1273,
+ 1274,
+ 1275,
+ 1276,
+ 1277,
+ 1278,
+ 1279,
+ 1280,
+ 1281,
+ 1282,
+ 1283,
+ 1284,
+ 1285,
+ 1286,
+ 1287,
+ 1288,
+ 1289,
+ 1290,
+ 1291,
+ 1292,
+ 1293,
+ 1294,
+ 1295,
+ 1296,
+ 1297,
+ 1298,
+ 1299,
+ 1300,
+ 1301,
+ 1302,
+ 1303,
+ 1304,
+ 1305,
+ 1307,
+ 1309,
+ 1311,
+ 1313,
+ 1315,
+ 1317,
+ 1319,
+ 1321,
+ 1322,
+ 1323,
+ 1325,
+ 1327,
+ 1328,
+ 1330,
+ 1332,
+ 1333,
+ 1334,
+ 1335,
+ 1336,
+ 1337,
+ 1338,
+ 1339,
+ 1340,
+ 1341,
+ 1342,
+ 1343,
+ 1344,
+ 1345,
+ 1346,
+ 1347,
+ 1348,
+ 1349,
+ 1350,
+ 1351,
+ 1352,
+ 1353,
+ 1354,
+ 1355,
+ 1356,
+ 1357,
+ 1359,
+ 1360,
+ 1361,
+ 1362,
+ 1364,
+ 1365,
+ 1367,
+ 1369,
+ 1371,
+ 1373,
+ 1374,
+ 1375,
+ 1376,
+ 1377,
+ 1378,
+ 1379,
+ 1380,
+ 1381,
+ 1382,
+ 1383,
+ 1384,
+ 1385,
+ 1386,
+ 1387,
+ 1389,
+ 1390,
+ 1392,
+ 1393,
+ 1394,
+ 1395,
+ 1397,
+ 1398,
+ 1400,
+ 1402,
+ 1404,
+ 1406,
+ 1407,
+ 1409,
+ 1410,
+ 1411,
+ 1412,
+ 1413,
+ 1415,
+ 1416,
+ 1419,
+ 1424,
+ 1426,
+ 1428,
+ 1430,
+ 1432,
+ 1434,
+ 1436,
+ 1438,
+ 1440,
+ 1442,
+ 1444,
+ 1446,
+ 1448,
+ 1450,
+ 1452,
+ 1454,
+ 1456,
+ 1457,
+ 1458,
+ 1459,
+ 1460,
+ 1461,
+ 1462,
+ 1463,
+ 1464,
+ 1465,
+ 1466,
+ 1467,
+ 1468,
+ 1469,
+ 1470,
+ 1471,
+ 1472,
+ 1473,
+ 1474,
+ 1475,
+ 1476,
+ 1478,
+ 1480,
+ 1482,
+ 1484,
+ 1486,
+ 1488,
+ 1490,
+ 1492,
+ 1494,
+ 1496,
+ 1498,
+ 1500,
+ 1502,
+ 1504,
+ 1506,
+ 1508,
+ 1510,
+ 1512,
+ 1513,
+ 1515,
+ 1517,
+ 1519,
+ 1521,
+ 1523,
+ 1525,
+ 1527,
+ 1529,
+ 1531,
+ 1533,
+ 1535,
+ 1537,
+ 1539,
+ 1541,
+ 1543,
+ 1545,
+ 1547,
+ 1549,
+ 1551,
+ 1553,
+ 1555,
+ 1557,
+ 1559,
+ 1561,
+ 1562,
+ 1564,
+ 1566,
+ 1568,
+ 1570,
+ 1572,
+ 1574,
+ 1576,
+ 1578,
+ 1580,
+ 1582,
+ 1583,
+ 1585,
+ 1587,
+ 1589,
+ 1591,
+ 1593,
+ 1594,
+ 1596,
+ 1598,
+ 1600,
+ 1602,
+ 1604,
+ 1606,
+ 1608,
+ 1615,
+ 1617,
+ 1619,
+ 1621,
+ 1623,
+ 1625,
+ 1627,
+ 1629,
+ 1631,
+ 1634,
+ 1636,
+ 1638,
+ 1640,
+ 1642,
+ 1644,
+ 1646,
+ 1648,
+ 1650,
+ 1651,
+ 1652,
+ 1654,
+ 1656,
+ 1658,
+ 1660,
+ 1662,
+ 1664,
+ 1666,
+ 1668,
+ 1670,
+ 1673,
+ 1675,
+ 1677,
+ 1679,
+ 1681,
+ 1683,
+ 1685,
+ 1687,
+ 1689,
+ 1691,
+ 1693,
+ 1695,
+ 1697,
+ 1699,
+ 1701,
+ 1703,
+ 1705,
+ 1707,
+ 1709,
+ 1711,
+ 1713,
+ 1715,
+ 1717,
+ 1719,
+ 1721,
+ 1723,
+ 1725,
+ 1727,
+ 1729,
+ 1731,
+ 1733,
+ 1737,
+ 1739,
+ 1741,
+ 1743,
+ 1745,
+ 1747,
+ 1749,
+ 1751,
+ 1754,
+ 1756,
+ 1758,
+ 1759,
+ 1760,
+ 1762,
+ 1764,
+ 1766,
+ 1768,
+ 1770,
+ 1772,
+ 1774,
+ 1776,
+ 1778,
+ 1780,
+ 1782,
+ 1784,
+ 1786,
+ 1788,
+ 1790,
+ 1792,
+ 1794,
+ 1796,
+ 1798,
+ 1800,
+ 1802,
+ 1804,
+ 1805,
+ 1807,
+ 1809,
+ 1811,
+ 1813,
+ 1815,
+ 1817,
+ 1819,
+ 1821,
+ 1823,
+ 1824,
+ 1825,
+ 1827,
+ 1829,
+ 1831,
+ 1833,
+ 1835,
+ 1837,
+ 1839,
+ 1841,
+ 1843,
+ 1845,
+ 1847,
+ 1849,
+ 1851,
+ 1853,
+ 1855,
+ 1857,
+ 1859,
+ 1861,
+ 1862,
+ 1864,
+ 1866
+ ]
+ },
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 11,
+ 430,
+ 760,
+ 761,
+ 896,
+ 902,
+ 1609,
+ 1610,
+ 1611,
+ 1612,
+ 1613,
+ 1632,
+ 1734,
+ 1735,
+ 1752
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/avatarlistbox.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/avatarlistbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/avatarlistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/beingslistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/colorlistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/chat/battletab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/chat/battletab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/chat/channeltab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/chat/channeltab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/browserbox.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/browserbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/browserbox.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/button.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/button.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/characterdisplay.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/characterdisplay.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/characterviewbase.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/characterviewnormal.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/characterviewnormal.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/characterviewsmall.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/characterviewsmall.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/attrs/attrdisplay.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/attrs/attrdisplay.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/attrs/changedisplay.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/attrs/changedisplay.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/attrs/derdisplay.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/attrs/derdisplay.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/clanwindowtabs.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/clanwindowtabs.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/debugtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/mapdebugtab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/mapdebugtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/netdebugtab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/netdebugtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/targetdebugtab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/targetdebugtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/chat/chattab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/chat/chattab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/chat/clantab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/chat/clantab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/chatinput.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/checkbox.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/checkbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/models/colormodel.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/colormodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/colorpage.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/colorpage.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/container.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/container.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/containerplacer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/containerplacer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/createwidget.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/desktop.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/desktop.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/dropdown.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/dropdown.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/emoteshortcutcontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/emoteshortcutcontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/equipmentbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/equipmentpage.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/extendedlistbox.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/extendedlistbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/extendedlistboxitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/extendedlistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/models/extendednamesmodel.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/extendednamesmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/fontsizechoicelistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/fontsmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/iconsmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/ignorechoiceslistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/itemsmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/keylistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/langlistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/flowcontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/flowcontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/chat/gmtab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/chat/gmtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/chat/guildtab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/chat/guildtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/chat/partytab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/chat/partytab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/horizontcontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/horizontcontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/icon.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/icon.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/inttextfield.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/inttextfield.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/itemcontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/itemcontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/itemlinkhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/itemlinkhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/virtshortcutcontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/virtshortcutcontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/emotepage.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/emotepage.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/itemshortcutcontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/itemshortcutcontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/spellshortcutcontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/spellshortcutcontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/staticbrowserbox.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/staticbrowserbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/statspage.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/statspage.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/statspagebasic.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/statspagebasic.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/label.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/label.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/chat/langtab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/chat/langtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/layout.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/layout.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/layoutarray.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/layoutarray.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/layoutcell.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/layoutcell.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/layouthelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/layouthelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/layouttype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/linkhighlightmode.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/npcactionstate.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/npcinputstate.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/linepart.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/linepart.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/linkhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/listbox.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/listbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/models/modelistmodel.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/modelistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/models/namesmodel.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/namesmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/opengllistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/playerrelationlistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/models/playertablemodel.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/playertablemodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/questsmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/serverslistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/passwordfield.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/passwordfield.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/pincode.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/pincode.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/playerbox.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/playerbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/popup.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/popup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/popuplist.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/popuplist.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/progressbar.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/progressbar.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/progressindicator.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/progressindicator.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/radiobutton.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/radiobutton.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/radiogroup.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/radiogroup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/scrollarea.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/scrollarea.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/serverslistbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/setupbuttonitem.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/setupbuttonitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/setupitem.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/setupitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/setupquickitem.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/setupquickitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setuptab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setuptab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setuptabscroll.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setuptabscroll.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/setuptouchitem.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/setuptouchitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/models/shopitems.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/shopitems.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/shoplistbox.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/shoplistbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/shortcutcontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/shortcutcontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/skill/skilldata.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/skill/skilldata.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/skill/skillinfo.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/skill/skillinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/skilllistbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/skillrectanglelistbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/models/skillmodel.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/skillmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/sortlistmodelbuy.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/sortlistmodelinv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/soundsmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/slider.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/slider.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/sliderlist.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/sliderlist.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/shortcuttab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/skilltab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/socialattacktab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/socialfriendsfunctor.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/socialfriendstab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/socialguildtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/socialnavigationtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/socialpartytab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/socialpickuptab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/socialplayerstab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/socialtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/socialtabbase.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/statdebugtab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/statdebugtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/tab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/tab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabbedarea.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabbedarea.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/guitable.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/guitable.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/models/tablemodel.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/tablemodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/targettypemodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/models/touchactionmodel.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/touchactionmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/typelistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/updatetypemodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/updatelistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/worldlistmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/themesmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabstrip.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabstrip.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/textbox.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/textbox.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/textfield.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/textfield.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/textpreview.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/textpreview.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/chat/tradetab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/chat/tradetab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/vertcontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/vertcontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/chat/whispertab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/chat/whispertab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/widget2.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/widgetgroup.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/widgetgroup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/window.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/window.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/windowcontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/windowcontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/popups/beingpopup.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/popups/beingpopup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/buydialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/buydialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/buyselldialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/buyselldialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/changeemaildialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/changeemaildialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/changepassworddialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/changepassworddialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/charselectdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/charselectdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/charcreatedialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/charcreatedialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/chardeleteconfirm.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/chatwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/chatwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/clanwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/clanwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/confirmdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/confirmdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/connectiondialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/connectiondialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/cutinwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/cutinwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/debugwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/debugwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/didyouknowwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/didyouknowwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/editdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/editdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/editserverdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/editserverdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/emotewindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/emotewindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/equipmentwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/equipmentwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/focushandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/focushandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/gui.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/gui.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/mailmessage.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/mouseoverlink.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/helpwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/helpwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/insertcarddialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/insertcarddialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/inventorywindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/inventorywindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/itemamountwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/itemamountwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/popups/itempopup.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/popups/itempopup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/popups/spellpopup.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/popups/spellpopup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/popups/statuspopup.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/popups/statuspopup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/popups/textboxpopup.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/popups/textboxpopup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/killstats.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/killstats.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/logindialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/logindialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/minimap.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/minimap.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/ministatuswindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/ministatuswindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/npcdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/npcdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/npcselldialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/npcselldialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/okdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/okdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/outfitwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/outfitwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/pincodedialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/pincodedialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/textcommandeditor.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/textcommandeditor.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/onlineplayer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/palette.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/palette.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/popupmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/popupmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/popups/popupmenu.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/popups/popupmenu.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/popups/skillpopup.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/popups/skillpopup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/questswindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/questswindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/quitdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/quitdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/registerdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/registerdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/sdlinput.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/sdlinput.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/selldialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/selldialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/serverdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/serverdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/serverinfowindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/serverinfowindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/setupwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/setupwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_audio.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_audio.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_colors.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_colors.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_joystick.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_joystick.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_misc.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_misc.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_mods.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_mods.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_theme.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_theme.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_touch.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_touch.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_chat.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_chat.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_input.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_input.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_perfomance.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_perfomance.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_relations.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_relations.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_players.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_players.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_quick.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_quick.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_video.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_video.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/setup_visual.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/setup_visual.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/setupactiondata.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/setupinputpages.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/setupinputpages.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/pages/basic.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/pages/basic.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/pages/chat.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/pages/chat.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/pages/craft.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/pages/craft.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/pages/emotes.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/pages/emotes.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/pages/gui.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/pages/gui.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/pages/move.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/pages/move.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/pages/other.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/pages/other.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/pages/outfits.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/pages/outfits.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/pages/shortcuts.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/pages/shortcuts.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/pages/windows.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/pages/windows.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/fonts/font.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/fonts/font.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/fonts/textchunk.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/fonts/textchunk.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/fonts/textchunklist.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/fonts/textchunklist.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/fonts/textchunksmall.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/fonts/textchunksmall.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/shopwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/shopwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/shortcutwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/shortcutwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/skilldialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/skilldialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/socialwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/socialwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/popups/speechbubble.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/popups/speechbubble.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/statuswindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/statuswindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/textdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/textdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/textselectdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/textselectdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/popups/textpopup.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/popups/textpopup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/skin.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/skin.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/theme.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/theme.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/themecolorsidoperators.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/themecolorsidoperators.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/themecolortype.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/themeinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/touchactiondata.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/touchactiondata.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/tradewindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/tradewindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/updaterwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/updaterwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/userpalette.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/userpalette.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/progs/manaverse/gui/viewport.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/progs/manaverse/gui/viewport.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/viewport.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windowmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windowmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/whoisonline.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/whoisonline.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windowmenu.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windowmenu.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/worldselectdialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/worldselectdialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/adminhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/achievementhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/attendancehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/character.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/characters.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/charserverhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/charserverhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/clanhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/chathandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/download.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/download.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/auctionsearchtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/battlegroundtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/deleteitemreason.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/downloadstatus.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/netinventorytype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/mailmessagetype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/mailopentype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/npcaction.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/packettype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/gamehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/generalhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/guildhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/inventoryhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ipc.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ipc.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/inventoryitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/logindata.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/loginhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/messagein.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/messagein.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/messageout.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/messageout.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/npchandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/net.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/net.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/net/inventory.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/net/maxpacketversion.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/net/net.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/net/nostat.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/partyhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/partyshare.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/serverfreetype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/servertype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/storesearchtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/pethandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/playerhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/sdltcpnet.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/sdltcpnet.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/serverfeatures.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/serverinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/serverurlinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/skillhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tradehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/updatetypeoperators.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/updatetypeoperators.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/updatetype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/uploadcharinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/useragent.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/useragent.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/worldinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/packetcounters.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/packetcounters.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/packetfunction.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/packetinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/packetlimiter.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/packetlimiter.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/protocoloutdefine.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/protocoloutinclude.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/protocoloutupdate.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/recvpacketdefine.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/action.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/action.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/ambientlayer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/ambientlayer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/animation/animation.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/animation/animation.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/atlas/atlasitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/atlas/atlasmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/atlas/atlasmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/atlas/atlasresource.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/atlas/atlasresource.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/rect/doublerect.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/attack.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/avatardb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/avatardb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/badgesdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/badgesdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/beingcommon.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/beingcommon.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/beinginfo.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/beinginfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/beingmenuitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/beingslot.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/beingslot.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/chatobject.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/chatobject.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/claninfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/chardb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/chardb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/clandb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/clandb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/colordb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/colordb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/commandsdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/commandsdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/cursors.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/cursors.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/dbmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/dbmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/delayedmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/delayedmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/deaddb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/deaddb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/elementaldb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/elementaldb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/dye/dye.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/dye/dye.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/dye/dyecolor.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/dye/dyepalette.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/dye/dyepalette.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/dye/dyepalette_replaceacolor.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/dye/dyepalette_replaceaoglcolor.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/dye/dyepalette_replacescolor.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/dye/dyepalette_replacesoglcolor.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/dye/dyepaletteptr.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/effectdescription.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/emoteinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/emotesprite.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/equipmentslots.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/emotedb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/emotedb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/groupdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/groupdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/homunculusdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/homunculusdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/horsedb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/horsedb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/fboinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/frame.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/groupinfo.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/groupinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/horseinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/horseoffset.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/image/image.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/image/image.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/imagehelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/imagehelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/imagerect.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/imageset.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/imageset.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/itemcolordata.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/itemfieldinfos.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/itemdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/itemdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/basicstat.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/itemfielddb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/itemfielddb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/itemoptiondb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/itemoptiondb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/languagedb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/languagedb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/iteminfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/iteminfo.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/itemmenuitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/cursor.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/displaytype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/frametype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/imageposition.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/imagetype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/mailqueuetype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/map/maplayertype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/item/itemdbtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/item/itemsoundevent.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/item/itemtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/itemtypemap.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/itemtypemapdata.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/mailqueue.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/mapdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/mapdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/mercenarydb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/mercenarydb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/moddb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/moddb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/mapinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/map/mapitemtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/map/maplayerposition.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/mapreader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/mapreader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/memorycounter.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/memorycounter.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/memorymanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/memorymanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/missileinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/mobileopenglscreenshothelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/mobileopenglscreenshothelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/modinfo.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/modinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/mstack.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/notificationinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/notifications.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/npcbuttoninfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/npcdialoginfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/npcdialogmenuinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/npcimageinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/npcinventoryinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/npctextinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/notifyflags.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/notifytypes.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/monsterdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/monsterdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/networkdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/networkdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/npcdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/npcdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/npcdialogdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/npcdialogdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/openglimagehelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/openglimagehelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/openglscreenshothelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/openglscreenshothelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/questeffect.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/questitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/questitemtext.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/questvar.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/questtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/servercommandenable.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/servercommandtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/serverpermissiontype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/palettedb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/palettedb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/petdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/petdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/questdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/questdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/skillunitdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/skillunitdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/resource.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/resource.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/resourcefunctiontypes.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/resourcetypes.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/atlasloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/atlasloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/emptyatlasloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/emptyatlasloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/imageloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/imageloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/imagesetloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/imagesetloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/musicloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/musicloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/rescaledloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/rescaledloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/shaderloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/shaderloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/shaderprogramloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/shaderprogramloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/soundloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/soundloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/spritedefloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/spritedefloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/subimageloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/subimageloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/subimagesetloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/subimagesetloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/walklayerloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/walklayerloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/loaders/xmlloader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/loaders/xmlloader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/resourcemanager/resourcemanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/resourcemanager/resourcemanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/safeopenglimagehelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/safeopenglimagehelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/screenshothelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/sdl2imagehelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sdl2imagehelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/sdl2softwareimagehelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sdl2softwareimagehelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/sdl2softwarescreenshothelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sdl2softwarescreenshothelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/sdlgfxblitfunc.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sdlgfxblitfunc.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/sdlimagehelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sdlimagehelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/sdlmusic.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sdlmusic.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/sdlscreenshothelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sdlscreenshothelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/skill/skilltypeentry.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/skill/skilltypelist.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/net/skill.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/resources/currency.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/resources/skill.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/skill/skillowner.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/skill/skillsettype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/skill/skilltype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/skill/skilltype2.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/sounddb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/sounddb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/statdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/statdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/statuseffectdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/statuseffectdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/textdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/textdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/unitsdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/unitsdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/db/weaponsdb.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/db/weaponsdb.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/servercommands.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/serverpermissions.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/soundeffect.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/soundeffect.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/soundinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/resources/spriteaction.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sprite/spritedef.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/sprite/spritedef.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/spritedirection.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sprite/spritedisplay.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sprite/spritereference.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/image/subimage.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/image/subimage.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/surfaceimagehelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/surfaceimagehelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/atlas/textureatlas.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/updatefile.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/wallpaper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/wallpaper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/wallpaperdata.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/translation/podict.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/translation/podict.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/translation/poparser.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/translation/poparser.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/translation/translationmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/translation/translationmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/base64.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/base64.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/booleanoptions.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/browserboxtools.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/browserboxtools.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/buildhex.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/cast.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/chatutils.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/chatutils.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/checkutils.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/checkutils.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/copynpaste.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/copynpaste.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/cpu.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/cpu.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/delete2.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/dtor.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/dumplibs.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/dumplibs.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/dumpsizes.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/dumpsizes.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/env.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/env.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/foreach.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/files.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/files.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/fuzzer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/fuzzer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/gettext.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/gettexthelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/gettexthelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/gmfunctions.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/gmfunctions.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/intmap.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/itemxmlutils.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/itemxmlutils.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/langs.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/langs.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/likely.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/mathutils.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/parameters.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/parameters.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/paths.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/paths.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/performance.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/performance.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/perfstat.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/perfstat.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/pnglib.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/pnglib.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/fsfuncs.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/rwops.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/rwops.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/tools.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/tools.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/list.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/list.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/fs.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/fs.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/rwopstypes.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/direntry.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/direntry.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/fsdir.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/fsdir.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/fsdirrwops.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/fsdirrwops.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/fsentry.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/fsentry.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/fszip.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/fszip.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/fsziprwops.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/fsziprwops.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/zipentry.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/zipentry.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/zipreader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/zipreader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/ziplocalheader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/ziplocalheader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/process.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/process.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/sdl2helper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/sdl2helper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/sdl2logger.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/sdl2logger.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/sdl2musichelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/sdl2musichelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/sdlcheckutils.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/sdlcheckutils.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/sdlhelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/sdlhelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/sdlmusichelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/sdlmusichelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/sdlmemoryobject.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/stringmap.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/stringutils.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/stringutils.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/stringvector.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/timer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/timer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/vector.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/virtfs/file.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/virtfs/file.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/mutex.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/naclmessages.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/naclmessages.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/mkdir.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/mkdir.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/mrand.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/mrand.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/xml.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/xml.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/xmlutils.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/xmlutils.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/xmlwriter.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/xml/libxml.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/xml/libxml.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/xml/libxml.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/test/testlauncher.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/test/testlauncher.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/test/testmain.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/test/testmain.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actions/actiondef.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actions/actionfuncptr.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/progs/manaverse/actions/actions.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actions/actions.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/progs/manaverse/actions/chat.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actions/chat.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/progs/manaverse/actions/commands.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actions/commands.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/progs/manaverse/actions/move.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actions/move.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/progs/manaverse/actions/pets.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actions/pets.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/progs/manaverse/actions/statusbar.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actions/statusbar.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/progs/manaverse/actions/tabs.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actions/tabs.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/progs/manaverse/actions/target.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actions/target.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/progs/manaverse/actions/windows.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actions/windows.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/actor.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/actor.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/actorsprite.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/actorsprite.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/actortype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/attacktype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/attributes.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/enums/being/attributesstrings.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/attributesstrings.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/badgedrawtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/badgeindex.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/actorspritelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/arrowslistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/arrowslistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/assertlistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/assertlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/attributelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/attributelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/awaylistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/awaylistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/baselistener.hpp",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/charrenamelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/charrenamelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/actormanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/actormanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/sprite/animatedsprite.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sprite/animatedsprite.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/sprite/animationdelayload.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sprite/animationdelayload.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/particle/animationparticle.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/animationparticle.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/avatar.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/avatar.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/being.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/being.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/beingaction.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/beingcacheentry.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/beingdirection.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/beingflag.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/beingspeech.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/castingeffect.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/castingeffect.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/localclan.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/localclan.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/beingequipbackend.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/beingequipbackend.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/spellmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/spellmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/chatlogger.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/chatlogger.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/progs/manaverse/client.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/progs/manaverse/client.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/client.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/commandline.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/commandline.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/configmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/configmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/compounditem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/compoundsprite.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/compoundsprite.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/crazymoves.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/crazymoves.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/cookingtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/gender.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/homunculusinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/configlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/debugmessagelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/debugmessagelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/configuration.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/configuration.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/debug.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/defaults.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/defaults.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/dirs.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/dirs.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/dragdrop.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/effectmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/effectmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/shortcut/emoteshortcut.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/shortcut/emoteshortcut.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/emoteshortcut.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/equipment.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/eventsmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/eventsmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/flooritem.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/flooritem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/game.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/game.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gamemodifiers.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gamemodifiers.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/equipment.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/itemshortcut.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/spells.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/utils/perfstat.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/utils/timer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/utils/utf8.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/gui/chat.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/gui/pages.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/gui/theme.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/render/graphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/graphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/graphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/graphicsmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/graphicsmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/vertexes/imagecollection.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/vertexes/imagecollection.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/vertexes/imagevertexes.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/vertexes/imagevertexes.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/vertexes/openglgraphicsvertexes.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/vertexes/openglgraphicsvertexes.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/guild.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/guild.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/commandtarget.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/cutin.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/dragdropsource.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/emotetype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/equipslot.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/guildpositionflags.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/inventorytype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/magicschool.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/particle/imageparticle.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/imageparticle.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/sprite/imagesprite.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sprite/imagesprite.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/inventory/complexinventory.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/inventory/complexinventory.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/inventory/inventory.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/inventory/inventory.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/item/cardslist.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/item/cardslist.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/item/complexitem.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/item/complexitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/item/item.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/item/item.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/item/itemfieldtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/item/itemoption.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/item/itemoptionslist.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/itemcolormanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/itemcolormanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/shortcut/itemshortcut.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/shortcut/itemshortcut.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/itemsoundmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/itemsoundmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/shortcut/dropshortcut.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/shortcut/dropshortcut.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/shortcut/spellshortcut.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/shortcut/spellshortcut.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/textcommand.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/textcommand.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/input/inputaction.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/input/inputgroup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/inputactiondata.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/inputactionmap.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/inputactionoperators.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/inputactionoperators.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/inputactionsortfunctor.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/input/inputcondition.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/inputfunction.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/inputitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/inputmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/inputmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/input/inputtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/input/keyboardfocus.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/input/keyvalue.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/events/inputevent.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/joystick.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/joystick.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/keyboardconfig.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/keyboardconfig.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/keyinput.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/touch/multitouchmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/touch/multitouchmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/localconsts.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/localplayer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/localplayer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/mercenaryinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/petinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/pickup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/logger.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/logger.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/main.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/main.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/maingui.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/maingui.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/map/blockmask.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/map/blocktype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/map/collisiontype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/skill/casttype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/location.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/map/map.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/map.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/resources/item/cards.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/resources/item/itemoptions.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/resources/map/map.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/map/mapheights.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/mapheights.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/map/mapitem.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/mapitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/map/maplayer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/maplayer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/mapobject.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/mapobjectlist.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/maprowvertexes.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/resources/map/maptype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/metatile.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/map/objectslayer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/objectslayer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/opengl/mgl.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/opengl/mgl.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/opengl/mgl.hpp",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/opengl/mglcheck.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/opengl/mgldefines.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/opengl/mglemu.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/opengl/mglemu.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/opengl/mglfunctions.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/opengl/mgltypes.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/mobileopengl2graphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/mobileopengl2graphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/mobileopenglgraphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/mobileopenglgraphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/modernopenglgraphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/modernopenglgraphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/nacl/naclfunctions.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/nacl/naclgles.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/nacl/naclgles.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/mouseinput.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/mumblemanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/mumblemanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/navigationmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/navigationmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/opengl/naclglfunctions.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/normalopenglgraphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/normalopenglgraphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/notifymanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/notifymanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/options.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/graphicsdef.hpp",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/imagegraphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/imagegraphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/graphics_calcImageRect.hpp",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/graphics_drawImageRect.hpp",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/nullopenglgraphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/nullopenglgraphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/opengl/opengldebug.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/openglgraphicsdef.hpp",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/openglgraphicsdef1.hpp",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/openglgraphicsdefadvanced.hpp",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/renderers.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/renderers.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/rendererslistsdl.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/rendererslistsdl2.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/particle/alivestatus.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/particle/particlechangefunc.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/particle/particlephysics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/particle/particletype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/render/rendertype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/particle/particle.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/particle.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/particle/particlecontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/particlecontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/particle/particleemitter.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/particleemitter.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/particleemitterprop.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/particle/particleengine.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/particleengine.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/particleinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/particle/particlelist.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/particlelist.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/particletimer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/particle/particlevector.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/particlevector.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/party.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/party.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/pincodemanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/pincodemanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/playerignorestrategy.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/playerinfo.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/playerinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/playerrelation.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/playerrelation.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/being/playerrelations.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/being/playerrelations.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/rank.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/reachable.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/relation.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/targetcursorsize.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/targetcursortype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/visiblename.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/being/visiblenamepos.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/playerrelationslistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/renamelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/renamelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/requestadoptchildlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/requesttradelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/position.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/position.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/properties.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/map/speciallayer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/speciallayer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/map/tileanimation.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/tileanimation.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/particle/rotationalparticle.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/rotationalparticle.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/safeopenglgraphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/safeopenglgraphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/sdl2graphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/sdl2graphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/sdl2softwaregraphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/sdl2softwaregraphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/sdlgraphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/sdlgraphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/softwaregraphicsdef.hpp",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/sdlshared.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/settings.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/settings.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/item/shopitem.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/item/shopitem.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/shortcut/shortcutbase.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/shortcut/shortcutbase.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/animation/simpleanimation.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/animation/simpleanimation.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/const/sound.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/soundmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/soundmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/sprite/sprite.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/screendensity.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/state.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/textcommandtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/advanced.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/allowquit.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/allowsort.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/allplayers.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/append.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/autorelease.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/autotarget.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/beingid.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/beingtypeid.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/booldefines.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/damaged.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/donotalign.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/enable.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/enumdefines.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/equipm.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/equipped.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/favorite.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/forcedisplay.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/forcequantity.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/identified.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/ignorerecord.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/intdefines.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/issell.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/isstart.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/itemcolor.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/keep.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/losefocusontab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/mainconfig.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/modal.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/modifiable.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/move.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/notify.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/npcnames.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/online.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/onthefly.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/opaque.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/protected.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/separator.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/sfx.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/showcenter.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/showemptyrows.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/skiperror.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/speech.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/stringdefines.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/stringdefines2.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/trading.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/tryremovecolors.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/useargs.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/usebase64.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/usevirtfs.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/simpletypes/visible.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/statuseffect.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/statuseffect.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/surfacegraphics.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/surfacegraphics.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/shaders/shader.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/shaders/shader.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/shaders/shaderprogram.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/shaders/shaderprogram.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/render/shaders/shadersmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/render/shaders/shadersmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/text.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/text.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/textmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/textmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/particle/textparticle.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/particle/textparticle.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/tileinfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/tileset.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/touch/touchactions.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/touch/touchactions.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/touch/touchmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/touch/touchmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/variabledata.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/vector.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/vector.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/resources/map/walklayer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/resources/map/walklayer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/events/actionevent.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/actionlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/basiccontainer.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/browserlink.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/buttoninfo.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/buttontext.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/chatlog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/chatmsgtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/chattabtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/colorname.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/cliprect.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/color.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/colorpair.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/dialogtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/gradienttype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/itemamountwindowusage.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/orientation.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/pincodestate.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/progresscolorid.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/serverdialogdonwloadstatus.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/shoplistboxtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/slidergrid.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/themecolorid.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/updatedownloadstatus.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/gui/usercolorid.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/errorlistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/errorlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/widgetdeathlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/events/event.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/focuslistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/gamemodifierlistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/gamemodifierlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/guiconfiglistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/guitableactionlistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/guitableactionlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/inputactionremotelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/inputactionremotelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/inputactionreplayconfirmlistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/inputactionreplayconfirmlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/inputactionreplaylistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/inputactionreplaylistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/insertcardlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/inventorylistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/events/inputguievent.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/input/key.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/events/keyevent.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/events/keyeventtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/keylistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/listmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/models/magicschoolmodel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/events/mouseevent.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/events/mousebutton.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/events/mouseeventtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/mouselistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/openurllistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/playerdeathlistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/playerdeathlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/playerpostdeathlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/playerlistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/playerlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/rect.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/events/selectionevent.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/selectionlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/statlistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/statlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/tablemodellistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/textskilllistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/textskilllistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/tooltiplistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/tooltiplistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/updatestatuslistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/updatestatuslistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/uploadlistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/uploadlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/sdlpixel.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/utils/sdlsharedhelper.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/sdlsharedhelper.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/utils/stdmove.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/widget.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/weightlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/widgetlistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/wrongdatanoticelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/wrongdatanoticelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/basiccontainer2.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/basiccontainer.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/dialogsmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/dialogsmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/input/key.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/widget.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/basiccontainer2.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/bankwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/bankwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/buyingstoreselldialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/buyingstoreselldialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/eggselectiondialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/eggselectiondialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/maileditwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/maileditwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/mailviewwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/mailviewwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/mailwindow.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/mailwindow.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/banklistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/banklistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/buyingstoremodelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/buyingstoremodelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/buyingstoreslotslistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/buyingstoreslotslistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/changepincodelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/changepincodelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/newpincodelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/newpincodelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/newpincoderetrylistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/newpincoderetrylistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/pincodelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/pincodelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/shoprenamelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/shoprenamelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/skillwarplistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/skillwarplistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/vendingmodelistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/vendingmodelistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/listeners/vendingslotslistener.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/listeners/vendingslotslistener.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/auctionhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/bankhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/barterhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/battlegroundhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/buyingstorehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/cashshophandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/elementalhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/familyhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/friendshandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/homunculushandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/hostsgroup.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/mailhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/mail2handler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/maphandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/markethandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/mercenaryhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/refinehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/roulettehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/searchstorehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/vendinghandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/achievementrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/achievementrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/adminrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/adminrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/adminhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/adminhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/achievementhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/achievementhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/attendancehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/attendancehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/attendancerecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/attendancerecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/auctionrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/auctionrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/auctionhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/auctionhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/bankrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/bankrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/bankhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/bankhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/battlegroundrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/battlegroundrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/battlegroundhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/battlegroundhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/cashshophandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/cashshophandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/cashshoprecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/cashshoprecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/beingrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/beingrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/beinghandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/beinghandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/buyingstorehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/buyingstorehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/buyingstorerecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/buyingstorerecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/beingtype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/buysellhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/buysellhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/buysellrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/buysellrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/charserverhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/charserverhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/charserverrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/charserverrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/chathandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/chathandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/chatrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/chatrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/clanhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/clanhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/clanrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/clanrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/elementalhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/elementalhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/elementalrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/elementalrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/familyhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/familyhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/familyrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/familyrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/friendshandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/friendshandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/friendsrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/friendsrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/gamehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/gamehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/gamerecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/gamerecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/generalhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/generalhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/generalrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/generalrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/guildhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/guildhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/guildrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/guildrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/homunculushandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/homunculushandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/homunculusrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/homunculusrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/inventoryhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/inventoryhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/inventoryrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/inventoryrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/itemflags.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/itemhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/itemhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/itemrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/itemrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/loginhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/loginhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/loginrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/loginrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/mail2recv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/mail2recv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/mail2handler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/mail2handler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/mailhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/mailhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/mailrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/mailrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/maphandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/maphandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/maprecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/maprecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/maptypeproperty2.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/markethandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/markethandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/marketrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/marketrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/barterhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/barterhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/barterrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/barterrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/menu.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/menu.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/enums/net/menutype.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/mercenaryhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/mercenaryhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/mercenaryrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/mercenaryrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/messagein.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/messagein.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/messageout.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/messageout.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/network.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/network.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/npchandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/npchandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/npcrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/npcrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/packetsin.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/packetsout.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/packetsout_shuffle_main.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/packetsout_shuffle_re.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/packetsout_shuffle_zero.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/partyhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/partyhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/partyrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/partyrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/pethandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/pethandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/petrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/petrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/playerhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/playerhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/playerrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/playerrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/protocolout.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/protocolout.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/questhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/questhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/questrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/questrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/recvpackets.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/refinehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/refinehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/refinerecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/refinerecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/roulettehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/roulettehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/rouletterecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/rouletterecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/searchstorehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/searchstorehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/searchstorerecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/searchstorerecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/serverfeatures.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/serverfeatures.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/skillhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/skillhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/skillrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/skillrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/sp.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/sprite.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/tradehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/tradehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/traderecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/traderecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/updateprotocol.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/updateprotocol.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/updateprotocol_main.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/updateprotocol_main.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/updateprotocol_re.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/updateprotocol_re.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/updateprotocol_zero.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/updateprotocol_zero.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/vendinghandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/vendinghandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/eathena/vendingrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/eathena/vendingrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/fs/specialfolder.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/fs/specialfolder.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 1,
+ "path" : "src/manaplus.rc",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/widgets/tabs/chat/emulateguildtab.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/chat/emulateguildtab.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/gui/windows/shopselldialog.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/windows/shopselldialog.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/adminhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/adminhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/adminrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/adminrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/achievementhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/achievementhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/attendancehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/attendancehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/beingrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/beingrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/beinghandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/beinghandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/buysellhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/buysellhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/buysellrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/buysellrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/charserverhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/charserverhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/charserverrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/charserverrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/chathandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/chathandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/chatrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/chatrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/clanhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/clanhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/gamehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/gamehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/gamerecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/gamerecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/generalhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/generalhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/generalrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/generalrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/guildhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/guildhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/guildmanager.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/guildmanager.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/inventoryhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/inventoryhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/inventoryrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/inventoryrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/itemhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/itemhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/itemrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/itemrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/loginhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/loginhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/loginrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/loginrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/messagein.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/messagein.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/messageout.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/messageout.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/network.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/network.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/npchandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/npchandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/packetsin.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/packetsout.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/partyhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/partyhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/partyrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/partyrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/pethandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/pethandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/playerhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/playerhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/playerrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/playerrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/protocolout.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/protocolout.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/questhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/questhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/questrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/questrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/recvpackets.inc",
+ "sourceGroupIndex" : 2
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/serverfeatures.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/serverfeatures.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/skillhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/skillhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/skillrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/skillrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/sp.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/sprite.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/tradehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/tradehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/traderecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/traderecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/updateprotocol.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/updateprotocol.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/auctionhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/auctionhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/bankhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/bankhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/battlegroundhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/battlegroundhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/buyingstorehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/buyingstorehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/cashshophandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/cashshophandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/elementalhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/elementalhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/familyhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/familyhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/friendshandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/friendshandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/homunculushandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/homunculushandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/mailhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/mailhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/mail2handler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/mail2handler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/maphandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/maphandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/markethandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/markethandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/barterhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/barterhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/mercenaryhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/mercenaryhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/refinehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/refinehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/roulettehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/roulettehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/searchstorehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/searchstorehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/tmwa/vendinghandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/tmwa/vendinghandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/gui/widgets/tabs/socialguildtab2.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/adminhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/adminhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/beingrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/beingrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/beinghandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/beinghandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/buysellhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/buysellhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/buysellrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/buysellrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/charserverhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/charserverhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/charserverrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/charserverrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/chathandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/chathandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/chatrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/chatrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/eaprotocol.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/equipbackend.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/gamehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/gamehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/gamerecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/gamerecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/inventoryhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/inventoryhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/inventoryrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/inventoryrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/itemhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/itemhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/itemrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/itemrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/loginhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/loginhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/loginrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/loginrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/network.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/network.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/maprecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/maprecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/npchandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/npchandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/npcrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/npcrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/partyhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/partyhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/partyrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/partyrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/playerhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/playerhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/playerrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/playerrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/skillhandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/skillhandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/skillrecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/skillrecv.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/token.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/tradehandler.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/tradehandler.h",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 1,
+ "compileGroupIndex" : 0,
+ "path" : "src/net/ea/traderecv.cpp",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 1,
+ "path" : "src/net/ea/traderecv.h",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "EXECUTABLE"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-translations-a38070aeb02d3a0148a2.json b/out/build/default/.cmake/api/v1/reply/target-translations-a38070aeb02d3a0148a2.json new file mode 100644 index 000000000..b9957402b --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-translations-a38070aeb02d3a0148a2.json @@ -0,0 +1,234 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_CREATE_TRANSLATIONS"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 81,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 38,
+ "parent" : 1
+ }
+ ]
+ },
+ "id" : "translations::@fde6a12a88756396f0e5",
+ "name" : "translations",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/translations",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/translations.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/ca.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/cs.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/de.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/eo.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/es.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/fi.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/fr.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/id.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/it.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/ja.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/nl.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/nl_BE.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/pl.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/pt.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/pt_BR.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/ru.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/sr.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/sv.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/sv_SE.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/tr.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/uk.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/zh_CN.gmo.rule",
+ "sourceGroupIndex" : 1
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/zh_HK.gmo.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-po-9a93f48e431d282970fd.json b/out/build/default/.cmake/api/v1/reply/target-update-po-9a93f48e431d282970fd.json new file mode 100644 index 000000000..b39440865 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-po-9a93f48e431d282970fd.json @@ -0,0 +1,276 @@ +{
+ "backtrace" : 1,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "ADD_DEPENDENCIES",
+ "MANAPLUS_GETTEXT_UPDATE_PO"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 79,
+ "parent" : 0
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 62,
+ "parent" : 2
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-translation-cs::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 4,
+ "id" : "update-translation-ca::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 5,
+ "id" : "update-translation-es::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 6,
+ "id" : "update-translation-de::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 7,
+ "id" : "update-translation-eo::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 8,
+ "id" : "update-translation-fi::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 9,
+ "id" : "update-translation-fr::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 10,
+ "id" : "update-translation-id::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 11,
+ "id" : "update-translation-ja::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 12,
+ "id" : "update-translation-pt::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 13,
+ "id" : "update-translation-nl_BE::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 14,
+ "id" : "update-translation-pl::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 15,
+ "id" : "update-translation-it::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 16,
+ "id" : "update-translation-nl::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 17,
+ "id" : "update-translation-sr::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 18,
+ "id" : "update-translation-pt_BR::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 19,
+ "id" : "update-translation-ru::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 20,
+ "id" : "update-translation-uk::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 21,
+ "id" : "update-translation-zh_HK::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 22,
+ "id" : "update-translation-sv_SE::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 23,
+ "id" : "update-translation-sv::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 24,
+ "id" : "update-translation-tr::@fde6a12a88756396f0e5"
+ },
+ {
+ "backtrace" : 25,
+ "id" : "update-translation-zh_CN::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-po::@fde6a12a88756396f0e5",
+ "name" : "update-po",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sources" : [],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-pot-71d3cff021b985f0a3e1.json b/out/build/default/.cmake/api/v1/reply/target-update-pot-71d3cff021b985f0a3e1.json new file mode 100644 index 000000000..ec51641b7 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-pot-71d3cff021b985f0a3e1.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 44,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 63,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-translatable-files::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-pot::@fde6a12a88756396f0e5",
+ "name" : "update-pot",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-pot",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-pot.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translatable-files-b61697e31bfe5221cdd9.json b/out/build/default/.cmake/api/v1/reply/target-update-translatable-files-b61697e31bfe5221cdd9.json new file mode 100644 index 000000000..0af28f473 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translatable-files-b61697e31bfe5221cdd9.json @@ -0,0 +1,73 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 49,
+ "parent" : 1
+ }
+ ]
+ },
+ "id" : "update-translatable-files::@fde6a12a88756396f0e5",
+ "name" : "update-translatable-files",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translatable-files",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translatable-files.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-ca-5155dbe44cb16e13027a.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-ca-5155dbe44cb16e13027a.json new file mode 100644 index 000000000..1c10f4eb2 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-ca-5155dbe44cb16e13027a.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-ca::@fde6a12a88756396f0e5",
+ "name" : "update-translation-ca",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-ca",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-ca.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-cs-6e847e2b4db566997385.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-cs-6e847e2b4db566997385.json new file mode 100644 index 000000000..2c37938be --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-cs-6e847e2b4db566997385.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-cs::@fde6a12a88756396f0e5",
+ "name" : "update-translation-cs",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-cs",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-cs.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-de-99b5614a6a2430d2d07e.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-de-99b5614a6a2430d2d07e.json new file mode 100644 index 000000000..5d9c460ee --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-de-99b5614a6a2430d2d07e.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-de::@fde6a12a88756396f0e5",
+ "name" : "update-translation-de",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-de",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-de.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-eo-3668568101a27bef4c27.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-eo-3668568101a27bef4c27.json new file mode 100644 index 000000000..15302c49a --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-eo-3668568101a27bef4c27.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-eo::@fde6a12a88756396f0e5",
+ "name" : "update-translation-eo",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-eo",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-eo.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-es-b1b1d13c4ef2bf95d3d9.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-es-b1b1d13c4ef2bf95d3d9.json new file mode 100644 index 000000000..1ee0ae672 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-es-b1b1d13c4ef2bf95d3d9.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-es::@fde6a12a88756396f0e5",
+ "name" : "update-translation-es",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-es",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-es.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-fi-3951aa08b26a45fce9ae.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-fi-3951aa08b26a45fce9ae.json new file mode 100644 index 000000000..fb9ed32f2 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-fi-3951aa08b26a45fce9ae.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-fi::@fde6a12a88756396f0e5",
+ "name" : "update-translation-fi",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-fi",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-fi.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-fr-ca68ac3dc3960a24a293.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-fr-ca68ac3dc3960a24a293.json new file mode 100644 index 000000000..6c072054d --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-fr-ca68ac3dc3960a24a293.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-fr::@fde6a12a88756396f0e5",
+ "name" : "update-translation-fr",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-fr",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-fr.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-id-78735636f0461bed6f14.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-id-78735636f0461bed6f14.json new file mode 100644 index 000000000..b743ff80e --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-id-78735636f0461bed6f14.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-id::@fde6a12a88756396f0e5",
+ "name" : "update-translation-id",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-id",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-id.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-it-ccd5b1a16a956e25fd61.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-it-ccd5b1a16a956e25fd61.json new file mode 100644 index 000000000..21d828de1 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-it-ccd5b1a16a956e25fd61.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-it::@fde6a12a88756396f0e5",
+ "name" : "update-translation-it",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-it",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-it.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-ja-ceb987d9b783017e7a23.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-ja-ceb987d9b783017e7a23.json new file mode 100644 index 000000000..412306ac7 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-ja-ceb987d9b783017e7a23.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-ja::@fde6a12a88756396f0e5",
+ "name" : "update-translation-ja",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-ja",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-ja.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-nl-9bfbd77c3023eeae3e61.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-nl-9bfbd77c3023eeae3e61.json new file mode 100644 index 000000000..d3aaa3afd --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-nl-9bfbd77c3023eeae3e61.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-nl::@fde6a12a88756396f0e5",
+ "name" : "update-translation-nl",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-nl",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-nl.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-nl_BE-fb2044d470b3226a20c4.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-nl_BE-fb2044d470b3226a20c4.json new file mode 100644 index 000000000..1f6c91631 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-nl_BE-fb2044d470b3226a20c4.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-nl_BE::@fde6a12a88756396f0e5",
+ "name" : "update-translation-nl_BE",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-nl_BE",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-nl_BE.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-pl-3c4859e60a094ec9c68d.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-pl-3c4859e60a094ec9c68d.json new file mode 100644 index 000000000..35d14fa56 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-pl-3c4859e60a094ec9c68d.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-pl::@fde6a12a88756396f0e5",
+ "name" : "update-translation-pl",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-pl",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-pl.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-pt-3209e284d9e5f58ddf27.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-pt-3209e284d9e5f58ddf27.json new file mode 100644 index 000000000..53cb8be3c --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-pt-3209e284d9e5f58ddf27.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-pt::@fde6a12a88756396f0e5",
+ "name" : "update-translation-pt",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-pt",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-pt.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-pt_BR-85f108ada0e5d82e0e2c.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-pt_BR-85f108ada0e5d82e0e2c.json new file mode 100644 index 000000000..44ac7dcdd --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-pt_BR-85f108ada0e5d82e0e2c.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-pt_BR::@fde6a12a88756396f0e5",
+ "name" : "update-translation-pt_BR",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-pt_BR",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-pt_BR.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-ru-9736ba0ac81383206b32.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-ru-9736ba0ac81383206b32.json new file mode 100644 index 000000000..489e32439 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-ru-9736ba0ac81383206b32.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-ru::@fde6a12a88756396f0e5",
+ "name" : "update-translation-ru",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-ru",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-ru.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-sr-6c46582a363fbaf433ab.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-sr-6c46582a363fbaf433ab.json new file mode 100644 index 000000000..129e95120 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-sr-6c46582a363fbaf433ab.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-sr::@fde6a12a88756396f0e5",
+ "name" : "update-translation-sr",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-sr",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-sr.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-sv-17f13fba78d51868509d.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-sv-17f13fba78d51868509d.json new file mode 100644 index 000000000..ffd491996 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-sv-17f13fba78d51868509d.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-sv::@fde6a12a88756396f0e5",
+ "name" : "update-translation-sv",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-sv",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-sv.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-sv_SE-a05bd405d023e49bf563.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-sv_SE-a05bd405d023e49bf563.json new file mode 100644 index 000000000..737b522f7 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-sv_SE-a05bd405d023e49bf563.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-sv_SE::@fde6a12a88756396f0e5",
+ "name" : "update-translation-sv_SE",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-sv_SE",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-sv_SE.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-tr-6a95955bb3143576999f.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-tr-6a95955bb3143576999f.json new file mode 100644 index 000000000..087be57f4 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-tr-6a95955bb3143576999f.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-tr::@fde6a12a88756396f0e5",
+ "name" : "update-translation-tr",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-tr",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-tr.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-uk-fc0ac5e3f53157b7e867.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-uk-fc0ac5e3f53157b7e867.json new file mode 100644 index 000000000..da113be11 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-uk-fc0ac5e3f53157b7e867.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-uk::@fde6a12a88756396f0e5",
+ "name" : "update-translation-uk",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-uk",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-uk.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-zh_CN-38a2a3ef030158ab9b07.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-zh_CN-38a2a3ef030158ab9b07.json new file mode 100644 index 000000000..ca4c1b5d2 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-zh_CN-38a2a3ef030158ab9b07.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-zh_CN::@fde6a12a88756396f0e5",
+ "name" : "update-translation-zh_CN",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-zh_CN",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-zh_CN.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/target-update-translation-zh_HK-16f83537b89e87eeb327.json b/out/build/default/.cmake/api/v1/reply/target-update-translation-zh_HK-16f83537b89e87eeb327.json new file mode 100644 index 000000000..399fc2288 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/target-update-translation-zh_HK-16f83537b89e87eeb327.json @@ -0,0 +1,87 @@ +{
+ "backtrace" : 2,
+ "backtraceGraph" :
+ {
+ "commands" :
+ [
+ "ADD_CUSTOM_TARGET",
+ "MANAPLUS_GETTEXT_UPDATE_PO",
+ "ADD_DEPENDENCIES"
+ ],
+ "files" :
+ [
+ "po/CMakeLists.txt"
+ ],
+ "nodes" :
+ [
+ {
+ "file" : 0
+ },
+ {
+ "command" : 1,
+ "file" : 0,
+ "line" : 82,
+ "parent" : 0
+ },
+ {
+ "command" : 0,
+ "file" : 0,
+ "line" : 57,
+ "parent" : 1
+ },
+ {
+ "command" : 2,
+ "file" : 0,
+ "line" : 61,
+ "parent" : 1
+ }
+ ]
+ },
+ "dependencies" :
+ [
+ {
+ "backtrace" : 3,
+ "id" : "update-pot::@fde6a12a88756396f0e5"
+ }
+ ],
+ "id" : "update-translation-zh_HK::@fde6a12a88756396f0e5",
+ "name" : "update-translation-zh_HK",
+ "paths" :
+ {
+ "build" : "po",
+ "source" : "po"
+ },
+ "sourceGroups" :
+ [
+ {
+ "name" : "",
+ "sourceIndexes" :
+ [
+ 0
+ ]
+ },
+ {
+ "name" : "CMake Rules",
+ "sourceIndexes" :
+ [
+ 1
+ ]
+ }
+ ],
+ "sources" :
+ [
+ {
+ "backtrace" : 2,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-zh_HK",
+ "sourceGroupIndex" : 0
+ },
+ {
+ "backtrace" : 0,
+ "isGenerated" : true,
+ "path" : "out/build/default/po/CMakeFiles/update-translation-zh_HK.rule",
+ "sourceGroupIndex" : 1
+ }
+ ],
+ "type" : "UTILITY"
+}
diff --git a/out/build/default/.cmake/api/v1/reply/toolchains-v1-1638f882dbbd76d8e5b6.json b/out/build/default/.cmake/api/v1/reply/toolchains-v1-1638f882dbbd76d8e5b6.json new file mode 100644 index 000000000..000670b12 --- /dev/null +++ b/out/build/default/.cmake/api/v1/reply/toolchains-v1-1638f882dbbd76d8e5b6.json @@ -0,0 +1,136 @@ +{
+ "kind" : "toolchains",
+ "toolchains" :
+ [
+ {
+ "compiler" :
+ {
+ "id" : "GNU",
+ "implicit" :
+ {
+ "includeDirectories" :
+ [
+ "C:/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.1.0/include",
+ "C:/msys64/ucrt64/include",
+ "C:/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.1.0/include-fixed"
+ ],
+ "linkDirectories" :
+ [
+ "C:/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.1.0",
+ "C:/msys64/ucrt64/lib/gcc",
+ "C:/msys64/ucrt64/x86_64-w64-mingw32/lib",
+ "C:/msys64/ucrt64/lib"
+ ],
+ "linkFrameworkDirectories" : [],
+ "linkLibraries" :
+ [
+ "mingw32",
+ "gcc",
+ "mingwex",
+ "kernel32",
+ "pthread",
+ "advapi32",
+ "shell32",
+ "user32",
+ "kernel32",
+ "mingw32",
+ "gcc",
+ "mingwex",
+ "kernel32"
+ ]
+ },
+ "path" : "C:/msys64/ucrt64/bin/cc.exe",
+ "version" : "15.1.0"
+ },
+ "language" : "C",
+ "sourceFileExtensions" :
+ [
+ "c",
+ "m"
+ ]
+ },
+ {
+ "compiler" :
+ {
+ "id" : "GNU",
+ "implicit" :
+ {
+ "includeDirectories" :
+ [
+ "C:/msys64/ucrt64/include/c++/15.1.0",
+ "C:/msys64/ucrt64/include/c++/15.1.0/x86_64-w64-mingw32",
+ "C:/msys64/ucrt64/include/c++/15.1.0/backward",
+ "C:/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.1.0/include",
+ "C:/msys64/ucrt64/include",
+ "C:/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.1.0/include-fixed"
+ ],
+ "linkDirectories" :
+ [
+ "C:/msys64/ucrt64/lib/gcc/x86_64-w64-mingw32/15.1.0",
+ "C:/msys64/ucrt64/lib/gcc",
+ "C:/msys64/ucrt64/x86_64-w64-mingw32/lib",
+ "C:/msys64/ucrt64/lib"
+ ],
+ "linkFrameworkDirectories" : [],
+ "linkLibraries" :
+ [
+ "stdc++",
+ "mingw32",
+ "gcc_s",
+ "gcc",
+ "mingwex",
+ "kernel32",
+ "pthread",
+ "advapi32",
+ "shell32",
+ "user32",
+ "kernel32",
+ "mingw32",
+ "gcc_s",
+ "gcc",
+ "mingwex",
+ "kernel32"
+ ]
+ },
+ "path" : "C:/msys64/ucrt64/bin/c++.exe",
+ "version" : "15.1.0"
+ },
+ "language" : "CXX",
+ "sourceFileExtensions" :
+ [
+ "C",
+ "M",
+ "c++",
+ "cc",
+ "cpp",
+ "cxx",
+ "mm",
+ "mpp",
+ "CPP",
+ "ixx",
+ "cppm",
+ "ccm",
+ "cxxm",
+ "c++m"
+ ]
+ },
+ {
+ "compiler" :
+ {
+ "implicit" : {},
+ "path" : "C:/msys64/ucrt64/bin/windres.exe"
+ },
+ "language" : "RC",
+ "sourceFileExtensions" :
+ [
+ "rc",
+ "RC"
+ ]
+ }
+ ],
+ "version" :
+ {
+ "major" : 1,
+ "minor" : 0
+ }
+}
diff --git a/out/build/default/.ninja_deps b/out/build/default/.ninja_deps Binary files differnew file mode 100644 index 000000000..6af1020b6 --- /dev/null +++ b/out/build/default/.ninja_deps diff --git a/out/build/default/.ninja_log b/out/build/default/.ninja_log new file mode 100644 index 000000000..7697e94a0 --- /dev/null +++ b/out/build/default/.ninja_log @@ -0,0 +1,747 @@ +# ninja log v7 +74 1498 7731132045615174 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/battletab.cpp.obj ecd43cf879df2dd3 +108 3291 7731132045957380 src/CMakeFiles/manaplus.dir/gui/widgets/attrs/attrdisplay.cpp.obj 5c743e215880b7c0 +103 3160 7731132045907381 src/CMakeFiles/manaplus.dir/gui/widgets/characterviewsmall.cpp.obj 8417dd628291a4e8 +118 3167 7731132046057373 src/CMakeFiles/manaplus.dir/gui/widgets/attrs/derdisplay.cpp.obj b2bf3854de50f9bb +123 3467 7731132046107384 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/clanwindowtabs.cpp.obj fc33d53047533b2e +97 3502 7731132045847383 src/CMakeFiles/manaplus.dir/gui/widgets/characterviewnormal.cpp.obj e6bbd79b4d072094 +79 3345 7731132045667401 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/channeltab.cpp.obj eb52df5c210f9fe6 +134 3808 7731132046217376 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/netdebugtab.cpp.obj f8b3b5393b011308 +129 4216 7731132046167378 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/mapdebugtab.cpp.obj f16ecbab944c4e5b +113 4260 7731132046007385 src/CMakeFiles/manaplus.dir/gui/widgets/attrs/changedisplay.cpp.obj 9c5aa7acc47eeb56 +92 4090 7731132045797427 src/CMakeFiles/manaplus.dir/gui/widgets/characterdisplay.cpp.obj 6974c0527d4d632a +87 4576 7731132045747419 src/CMakeFiles/manaplus.dir/gui/widgets/button.cpp.obj 1e8400c87c48a48 +3502 4996 7731132079901080 src/CMakeFiles/manaplus.dir/gui/widgets/container.cpp.obj 12176959acc84be7 +83 5048 7731132045707428 src/CMakeFiles/manaplus.dir/gui/widgets/browserbox.cpp.obj 2116208e15bf5655 +3346 4775 7731132078337721 src/CMakeFiles/manaplus.dir/gui/models/colormodel.cpp.obj 49d08f9d3e8fe2e +70 5075 7731132045575150 src/CMakeFiles/manaplus.dir/gui/widgets/avatarlistbox.cpp.obj 1997fc1ba7423598 +3808 5288 7731132082966863 src/CMakeFiles/manaplus.dir/gui/widgets/containerplacer.cpp.obj d7d80389efd53b3a +1499 5388 7731132059874112 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/targetdebugtab.cpp.obj fc11705596fd339c +3167 7117 7731132076547953 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/clantab.cpp.obj 5fab3415966979a4 +3468 6650 7731132079551076 src/CMakeFiles/manaplus.dir/gui/widgets/colorpage.cpp.obj 84ee4f6d6ba24831 +4997 6589 7731132094855619 src/CMakeFiles/manaplus.dir/gui/widgets/flowcontainer.cpp.obj dc72c380ab3719cd +5388 6926 7731132098770957 src/CMakeFiles/manaplus.dir/gui/widgets/horizontcontainer.cpp.obj 2e28e9a37a27f1b7 +3291 7008 7731132077791927 src/CMakeFiles/manaplus.dir/gui/widgets/checkbox.cpp.obj c8e1a2c293df3aa4 +3161 7457 7731132076487911 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/chattab.cpp.obj 60fb93bea996f43d +5049 8391 7731132095362604 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/gmtab.cpp.obj 5ba7e42265234574 +4090 8486 7731132085779385 src/CMakeFiles/manaplus.dir/gui/widgets/desktop.cpp.obj 4c1cba5f0b31c297 +4775 8478 7731132092635001 src/CMakeFiles/manaplus.dir/gui/models/extendednamesmodel.cpp.obj bac03d1c3486085d +4216 8736 7731132087039937 src/CMakeFiles/manaplus.dir/gui/widgets/dropdown.cpp.obj ae751c8199a4d8cf +4577 9270 7731132090649416 src/CMakeFiles/manaplus.dir/gui/widgets/extendedlistbox.cpp.obj 3cbf7fc8f0f3ea3d +5075 8727 7731132095628501 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/guildtab.cpp.obj 1a1db81c93fe7195 +4260 8639 7731132087479515 src/CMakeFiles/manaplus.dir/gui/widgets/emoteshortcutcontainer.cpp.obj c767451611834e14 +6650 10037 7731132111374604 src/CMakeFiles/manaplus.dir/gui/widgets/inttextfield.cpp.obj 913bae07800e9ea0 +5288 9472 7731132097759735 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/partytab.cpp.obj 724048043cd00614 +6590 9995 7731132110770410 src/CMakeFiles/manaplus.dir/gui/widgets/icon.cpp.obj ab38d8015558a3b7 +7008 11085 7731132114959778 src/CMakeFiles/manaplus.dir/gui/widgets/itemlinkhandler.cpp.obj c33a2ae8b6038b96 +9472 10416 7731132139599749 src/CMakeFiles/manaplus.dir/gui/widgets/layout.cpp.obj 951489f8962b3c8 +9270 11134 7731132137585601 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/langtab.cpp.obj e0bd82f9f48ea53 +10038 11531 7731132145260782 src/CMakeFiles/manaplus.dir/gui/widgets/layoutcell.cpp.obj 7c34bcfa8ec2d77 +9995 11746 7731132144831742 src/CMakeFiles/manaplus.dir/gui/widgets/layoutarray.cpp.obj 5a117aa667602dd0 +7117 11128 7731132116048739 src/CMakeFiles/manaplus.dir/gui/widgets/virtshortcutcontainer.cpp.obj 9199f835a00da3b6 +10416 11934 7731132149038752 src/CMakeFiles/manaplus.dir/gui/widgets/layouthelper.cpp.obj 321c66984f438df1 +6927 12673 7731132114148900 src/CMakeFiles/manaplus.dir/gui/widgets/itemcontainer.cpp.obj dc3bd7e4bd0a715e +7457 11120 7731132119465761 src/CMakeFiles/manaplus.dir/gui/widgets/emotepage.cpp.obj 5abe8e051d47682e +8639 11871 7731132131268232 src/CMakeFiles/manaplus.dir/gui/widgets/statspage.cpp.obj 4826f4d2fb06d44a +8728 12354 7731132132166196 src/CMakeFiles/manaplus.dir/gui/widgets/statspagebasic.cpp.obj 374c0bacf314821 +8736 12119 7731132132236188 src/CMakeFiles/manaplus.dir/gui/widgets/label.cpp.obj 271ca4e394225158 +8478 12788 7731132129662433 src/CMakeFiles/manaplus.dir/gui/widgets/spellshortcutcontainer.cpp.obj ada4ab7e459638c5 +11128 12822 7731132156151170 src/CMakeFiles/manaplus.dir/gui/models/modelistmodel.cpp.obj 2839e1cdfc45c73e +11134 12524 7731132156221168 src/CMakeFiles/manaplus.dir/gui/models/namesmodel.cpp.obj ae7cb93ab38033d8 +8391 12987 7731132128791824 src/CMakeFiles/manaplus.dir/gui/widgets/itemshortcutcontainer.cpp.obj 8a7d9e30d2ef16c0 +11086 14013 7731132155735389 src/CMakeFiles/manaplus.dir/gui/widgets/linepart.cpp.obj 88d83318c7922e05 +8486 12995 7731132129742313 src/CMakeFiles/manaplus.dir/gui/widgets/staticbrowserbox.cpp.obj 8982a591e7e442b8 +11120 14390 7731132156079483 src/CMakeFiles/manaplus.dir/gui/widgets/listbox.cpp.obj d8c49d8dd116dabb +12354 14211 7731132168429865 src/CMakeFiles/manaplus.dir/gui/widgets/popuplist.cpp.obj fce9501e9525597d +11746 15701 7731132162343213 src/CMakeFiles/manaplus.dir/gui/widgets/passwordfield.cpp.obj 4a9f725141d19bbc +12674 14511 7731132171616546 src/CMakeFiles/manaplus.dir/gui/widgets/progressindicator.cpp.obj 7086a9638cef21f7 +11531 15661 7731132160187204 src/CMakeFiles/manaplus.dir/gui/models/playertablemodel.cpp.obj c07bad7eb0738100 +11871 15882 7731132163588445 src/CMakeFiles/manaplus.dir/gui/widgets/pincode.cpp.obj e3d84f3b4560f434 +14390 15766 7731132188780494 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setuptab.cpp.obj 4991a04ed77bf922 +12119 16033 7731132166068788 src/CMakeFiles/manaplus.dir/gui/widgets/popup.cpp.obj 117d2fc739d77198 +12996 16189 7731132174833091 src/CMakeFiles/manaplus.dir/gui/widgets/setupbuttonitem.cpp.obj f986b33d516ecf28 +11934 16663 7731132164217159 src/CMakeFiles/manaplus.dir/gui/widgets/playerbox.cpp.obj 67bbae57cad71674 +12822 15888 7731132173099367 src/CMakeFiles/manaplus.dir/gui/widgets/radiogroup.cpp.obj d68578bca9785aad +15701 17365 7731132201887785 src/CMakeFiles/manaplus.dir/gui/models/shopitems.cpp.obj d1e7dab29db3971 +14511 16464 7731132189983020 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setuptabscroll.cpp.obj f0c965d30d722367 +12524 16591 7731132170121206 src/CMakeFiles/manaplus.dir/gui/widgets/progressbar.cpp.obj 472acd6f7f5a13ad +14013 17424 7731132185016956 src/CMakeFiles/manaplus.dir/gui/widgets/setupitem.cpp.obj 3df793219330a90b +12789 16833 7731132172765694 src/CMakeFiles/manaplus.dir/gui/widgets/radiobutton.cpp.obj e95197e6216f28e6 +14211 16938 7731132186991768 src/CMakeFiles/manaplus.dir/gui/widgets/setupquickitem.cpp.obj 3f4ce315f9805bc3 +12987 16946 7731132174753105 src/CMakeFiles/manaplus.dir/gui/widgets/scrollarea.cpp.obj 18e79bf67e4a6e26 +15662 18852 7731132201494524 src/CMakeFiles/manaplus.dir/gui/widgets/setuptouchitem.cpp.obj afeff4c11f8220b9 +16189 17698 7731132206793481 src/CMakeFiles/manaplus.dir/gui/models/skillmodel.cpp.obj b8398556112afd4f +16033 17850 7731132205213096 src/CMakeFiles/manaplus.dir/resources/skill/skillinfo.cpp.obj 49a668b6fa861fdf +15767 20277 7731132202538700 src/CMakeFiles/manaplus.dir/gui/widgets/shoplistbox.cpp.obj 2a23ef6259c0a44c +16947 19736 7731132214345128 src/CMakeFiles/manaplus.dir/gui/widgets/guitable.cpp.obj 4df09f44b05e728e +17425 19668 7731132219130109 src/CMakeFiles/manaplus.dir/gui/models/touchactionmodel.cpp.obj f42c8b0279af9362 +16663 20235 7731132211512976 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/statdebugtab.cpp.obj ef681a812370f765 +17366 19756 7731132218551594 src/CMakeFiles/manaplus.dir/gui/models/tablemodel.cpp.obj af8cdc11a9cd3b98 +16591 20145 7731132210792444 src/CMakeFiles/manaplus.dir/gui/widgets/sliderlist.cpp.obj 80e265df0de09289 +15882 19880 7731132203696987 src/CMakeFiles/manaplus.dir/gui/widgets/shortcutcontainer.cpp.obj b53f9d1c568e474e +15889 19763 7731132203758839 src/CMakeFiles/manaplus.dir/resources/skill/skilldata.cpp.obj 49977d16f711459e +16464 20724 7731132209510979 src/CMakeFiles/manaplus.dir/gui/widgets/slider.cpp.obj 5eca9429e112c185 +16939 20798 7731132214272535 src/CMakeFiles/manaplus.dir/gui/widgets/tabbedarea.cpp.obj 71ea96deefe4d222 +17698 20791 7731132221868056 src/CMakeFiles/manaplus.dir/gui/widgets/tabstrip.cpp.obj ff15bcbdf4b7ef9e +16833 20917 7731132213208731 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/tab.cpp.obj 841a3b384b3195a0 +17851 21556 7731132223390353 src/CMakeFiles/manaplus.dir/gui/widgets/textbox.cpp.obj 4b4f7e83574cc811 +19668 23542 7731132241562656 src/CMakeFiles/manaplus.dir/gui/widgets/textpreview.cpp.obj cd5ac58ba3c3bdd6 +19756 21467 7731132242432328 src/CMakeFiles/manaplus.dir/gui/widgets/vertcontainer.cpp.obj 7fc4cc895fa2c3c +18853 23552 7731132233402741 src/CMakeFiles/manaplus.dir/gui/widgets/textfield.cpp.obj 9a4ecd2577fed50 +19880 21511 7731132243678545 src/CMakeFiles/manaplus.dir/gui/widgets/widgetgroup.cpp.obj f619ee8681e836f3 +19737 24135 7731132242242317 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/tradetab.cpp.obj 3d5aa486a0d377ea +20277 24478 7731132247647916 src/CMakeFiles/manaplus.dir/gui/popups/beingpopup.cpp.obj 2ceb79871bf97a35 +19763 24247 7731132242512324 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/whispertab.cpp.obj e0c34cf1f74a6f67 +20236 24123 7731132247236069 src/CMakeFiles/manaplus.dir/gui/widgets/windowcontainer.cpp.obj f83ccd11d7344282 +20918 24604 7731132254060574 src/CMakeFiles/manaplus.dir/gui/windows/changepassworddialog.cpp.obj 3b08ae5b6599aa2d +20798 24515 7731132252853365 src/CMakeFiles/manaplus.dir/gui/windows/changeemaildialog.cpp.obj 9f72253b2efb02e7 +20791 24524 7731132252790609 src/CMakeFiles/manaplus.dir/gui/windows/buyselldialog.cpp.obj f7306f74926a49e9 +23543 26183 7731132280299959 src/CMakeFiles/manaplus.dir/gui/windows/clanwindow.cpp.obj 58488705cc808528 +23552 26329 7731132280393315 src/CMakeFiles/manaplus.dir/gui/windows/confirmdialog.cpp.obj 37a3b2ed459194fb +20145 25077 7731132246333779 src/CMakeFiles/manaplus.dir/gui/widgets/window.cpp.obj 1e524448d20d71da +21467 25507 7731132259558939 src/CMakeFiles/manaplus.dir/gui/windows/charselectdialog.cpp.obj ed4801b299a5a97a +21512 25581 7731132260012107 src/CMakeFiles/manaplus.dir/gui/windows/charcreatedialog.cpp.obj c3f75b5738f8d1f1 +20725 25764 7731132252119787 src/CMakeFiles/manaplus.dir/gui/windows/buydialog.cpp.obj 49fd063d30555ba +24123 27700 7731132286110534 src/CMakeFiles/manaplus.dir/gui/windows/connectiondialog.cpp.obj a3c802adbe7427e5 +24515 27937 7731132290029131 src/CMakeFiles/manaplus.dir/gui/windows/editdialog.cpp.obj 8720d700ec1f02c7 +24135 27694 7731132286229558 src/CMakeFiles/manaplus.dir/gui/windows/cutinwindow.cpp.obj d9d6959054d5b14e +24478 28191 7731132289662361 src/CMakeFiles/manaplus.dir/gui/windows/didyouknowwindow.cpp.obj 682d5298bb82b490 +21556 27730 7731132260446983 src/CMakeFiles/manaplus.dir/gui/windows/chatwindow.cpp.obj 3973d5c2a6a56b6e +24524 28133 7731132290119122 src/CMakeFiles/manaplus.dir/gui/windows/editserverdialog.cpp.obj ae77aa2016be8f85 +24247 27967 7731132287350188 src/CMakeFiles/manaplus.dir/gui/windows/debugwindow.cpp.obj 7cca32551764da06 +25508 28886 7731132299961234 src/CMakeFiles/manaplus.dir/gui/focushandler.cpp.obj b8a87f05410d7b7 +26183 29158 7731132306707168 src/CMakeFiles/manaplus.dir/gui/windows/insertcarddialog.cpp.obj 339462bb7751d2d3 +24604 28696 7731132290915237 src/CMakeFiles/manaplus.dir/gui/windows/emotewindow.cpp.obj cb0ed15230d46f8b +25764 29289 7731132302517421 src/CMakeFiles/manaplus.dir/gui/windows/helpwindow.cpp.obj e8199c6f149c851e +25077 30531 7731132295646248 src/CMakeFiles/manaplus.dir/gui/windows/equipmentwindow.cpp.obj 21b90120eb854376 +25581 31030 7731132300699376 src/CMakeFiles/manaplus.dir/gui/gui.cpp.obj 33a6da23199b4ee3 +26330 31037 7731132308169669 src/CMakeFiles/manaplus.dir/gui/windows/inventorywindow.cpp.obj ef31fda8c2acc27e +27694 32931 7731132321822367 src/CMakeFiles/manaplus.dir/gui/windows/itemamountwindow.cpp.obj 73b8b6c210c24333 +27937 31598 7731132324251454 src/CMakeFiles/manaplus.dir/gui/popups/statuspopup.cpp.obj dda48c8ca69dc065 +27730 31024 7731132322172365 src/CMakeFiles/manaplus.dir/gui/popups/spellpopup.cpp.obj 6b632b24cb7aa56d +27967 31303 7731132324543114 src/CMakeFiles/manaplus.dir/gui/popups/textboxpopup.cpp.obj afec69eaf033cbe2 +27701 32840 7731132321882397 src/CMakeFiles/manaplus.dir/gui/popups/itempopup.cpp.obj 74e16da00a43a100 +28133 32525 7731132326203824 src/CMakeFiles/manaplus.dir/gui/windows/killstats.cpp.obj bfbe7ea767616896 +28191 32304 7731132326793699 src/CMakeFiles/manaplus.dir/gui/windows/logindialog.cpp.obj f9bc29038183e471 +31598 33221 7731132360862078 src/CMakeFiles/manaplus.dir/gui/popupmanager.cpp.obj 67ec03ede648779a +29289 32794 7731132337774128 src/CMakeFiles/manaplus.dir/gui/windows/npcselldialog.cpp.obj 40bee06144eb23f +31303 33215 7731132357905786 src/CMakeFiles/manaplus.dir/gui/palette.cpp.obj 1b862584091f3637 +30531 33457 7731132350187167 src/CMakeFiles/manaplus.dir/gui/windows/okdialog.cpp.obj cc4a2128a006e2cd +31031 34001 7731132355181175 src/CMakeFiles/manaplus.dir/gui/windows/pincodedialog.cpp.obj 609e87c0cb11ce94 +28696 33517 7731132331844814 src/CMakeFiles/manaplus.dir/gui/windows/minimap.cpp.obj 1b5918d41ab686ee +28887 33542 7731132333746006 src/CMakeFiles/manaplus.dir/gui/windows/ministatuswindow.cpp.obj 32a087b0913ab833 +31037 34609 7731132355242950 src/CMakeFiles/manaplus.dir/gui/windows/textcommandeditor.cpp.obj ff9fc1359e6695b2 +31024 35679 7731132355121178 src/CMakeFiles/manaplus.dir/gui/windows/outfitwindow.cpp.obj 9fbb28e4878c5bde +33215 35421 7731132377030940 src/CMakeFiles/manaplus.dir/gui/sdlinput.cpp.obj 26ec7ea6a5ab05a4 +29158 34117 7731132336472841 src/CMakeFiles/manaplus.dir/gui/windows/npcdialog.cpp.obj cd9cdd544937c23d +32526 35415 7731132370136184 src/CMakeFiles/manaplus.dir/gui/popups/skillpopup.cpp.obj e874cc8a4801d3e0 +34001 36911 7731132384895917 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_audio.cpp.obj 984bb2648996e30d +33221 37040 7731132377090979 src/CMakeFiles/manaplus.dir/gui/widgets/selldialog.cpp.obj 6f89343717b1a267 +32840 36880 7731132373280069 src/CMakeFiles/manaplus.dir/gui/windows/quitdialog.cpp.obj a7cdfe07fe36eef +33518 37086 7731132380056537 src/CMakeFiles/manaplus.dir/gui/windows/serverinfowindow.cpp.obj 95392e800bf34604 +35421 37404 7731132399094426 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_mods.cpp.obj c1f99be21466136f +35415 37777 7731132399034436 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_misc.cpp.obj e69b11a179203878 +32931 37032 7731132374188993 src/CMakeFiles/manaplus.dir/gui/windows/registerdialog.cpp.obj 5c65495057ed5e3d +34117 37729 7731132386049606 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_colors.cpp.obj c149246b0a4f60c7 +32304 38352 7731132367911352 src/CMakeFiles/manaplus.dir/gui/popups/popupmenu.cpp.obj 3323c6e8e8e19a2c +34610 37990 7731132390973602 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_joystick.cpp.obj 1839fef642f8aaa1 +33543 38000 7731132380316526 src/CMakeFiles/manaplus.dir/gui/windows/setupwindow.cpp.obj d39a93821fcf713c +36880 38612 7731132413677830 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_touch.cpp.obj 978e1b8194930e37 +32794 38479 7731132372814977 src/CMakeFiles/manaplus.dir/gui/windows/questswindow.cpp.obj c2ef9bc992339d66 +37404 39610 7731132418918291 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_players.cpp.obj 6c828438ff153cb2 +37040 39271 7731132415278147 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_perfomance.cpp.obj 95c6f737cf5ce786 +38000 39209 7731132424878262 src/CMakeFiles/manaplus.dir/gui/setupinputpages.cpp.obj c0f7b84d16bf534c +37729 39725 7731132422171234 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_quick.cpp.obj 90c422490d924820 +38480 40042 7731132429680604 src/CMakeFiles/manaplus.dir/input/pages/chat.cpp.obj 9492ee0f24c56b1c +38352 39792 7731132428398550 src/CMakeFiles/manaplus.dir/input/pages/basic.cpp.obj 99ee91129121444d +33457 39708 7731132379453793 src/CMakeFiles/manaplus.dir/gui/windows/serverdialog.cpp.obj 5fba1733c425daba +37991 40347 7731132424788256 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_visual.cpp.obj 72304be2a8ef7bd2 +36911 40842 7731132413992556 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_chat.cpp.obj 9571a910dd3a1c22 +37032 41130 7731132415201558 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_input.cpp.obj 829140e68b4e6794 +38612 40353 7731132430999458 src/CMakeFiles/manaplus.dir/input/pages/craft.cpp.obj 32dc731613387094 +35679 40033 7731132401665511 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_theme.cpp.obj f13597681f8f15b5 +39271 40791 7731132437586928 src/CMakeFiles/manaplus.dir/input/pages/gui.cpp.obj 4d1401abd7b92363 +39610 41051 7731132440973610 src/CMakeFiles/manaplus.dir/input/pages/move.cpp.obj 35d89e5a8ef31ed +39209 40757 7731132436969756 src/CMakeFiles/manaplus.dir/input/pages/emotes.cpp.obj 824fec0fcdfa0d63 +39708 41092 7731132441961688 src/CMakeFiles/manaplus.dir/input/pages/other.cpp.obj dc09335d004eb204 +39792 41224 7731132442800274 src/CMakeFiles/manaplus.dir/input/pages/shortcuts.cpp.obj b6c31110d87e54fd +39725 41196 7731132442129823 src/CMakeFiles/manaplus.dir/input/pages/outfits.cpp.obj 1fe0e980e07b8aa4 +40033 41253 7731132445214512 src/CMakeFiles/manaplus.dir/input/pages/windows.cpp.obj 49f99f61c882c1db +37086 41455 7731132415734339 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_relations.cpp.obj b1b1db92e7bd8841 +37777 42158 7731132422658530 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_video.cpp.obj 8c2face2bba57b4f +40347 44350 7731132448343002 src/CMakeFiles/manaplus.dir/gui/fonts/textchunk.cpp.obj 43a5bf781f03e033 +40757 44280 7731132452442189 src/CMakeFiles/manaplus.dir/gui/fonts/textchunksmall.cpp.obj 2f941867de78d01f +40353 44090 7731132448412992 src/CMakeFiles/manaplus.dir/gui/fonts/textchunklist.cpp.obj 845365c45a33dc63 +40042 44381 7731132445297698 src/CMakeFiles/manaplus.dir/gui/fonts/font.cpp.obj e4955a6f7e0fbc64 +41455 45320 7731132459432916 src/CMakeFiles/manaplus.dir/gui/popups/textpopup.cpp.obj 5b57654a2c4075ed +44280 45484 7731132487673805 src/CMakeFiles/manaplus.dir/gui/themecolorsidoperators.cpp.obj b3731467ec77cb7f +40842 44508 7731132453298619 src/CMakeFiles/manaplus.dir/gui/windows/shortcutwindow.cpp.obj 9c66f2d359a38f78 +41225 44966 7731132457129256 src/CMakeFiles/manaplus.dir/gui/windows/textdialog.cpp.obj 6955e70b7ff2596e +44351 45597 7731132488385635 src/CMakeFiles/manaplus.dir/gui/touchactiondata.cpp.obj cee64a92ccbca274 +41253 44818 7731132457409251 src/CMakeFiles/manaplus.dir/gui/windows/textselectdialog.cpp.obj 2cd10eba2045f594 +41130 45331 7731132456176481 src/CMakeFiles/manaplus.dir/gui/popups/speechbubble.cpp.obj 7940075cc4bf2d14 +42158 45677 7731132466464333 src/CMakeFiles/manaplus.dir/gui/skin.cpp.obj d453be064d1b76a0 +41197 46339 7731132456855595 src/CMakeFiles/manaplus.dir/gui/windows/statuswindow.cpp.obj b24f1f83858bed6 +40791 46400 7731132452792633 src/CMakeFiles/manaplus.dir/gui/windows/shopwindow.cpp.obj 3cd52cb7383102cc +44819 46824 7731132493064508 src/CMakeFiles/manaplus.dir/gui/userpalette.cpp.obj ece0180fc44b96e9 +41092 47671 7731132455797047 src/CMakeFiles/manaplus.dir/gui/windows/socialwindow.cpp.obj a33e68e2e0d59455 +41051 47732 7731132455384915 src/CMakeFiles/manaplus.dir/gui/windows/skilldialog.cpp.obj 37c8d2fe8d0894a1 +46824 48932 7731132513125915 src/CMakeFiles/manaplus.dir/net/messagein.cpp.obj a8223f0bffb8a0d5 +45678 49642 7731132501660985 src/CMakeFiles/manaplus.dir/net/charserverhandler.cpp.obj 7bee2e26097279b5 +44090 49680 7731132485775127 src/CMakeFiles/manaplus.dir/gui/theme.cpp.obj 9e68777c43a42af +45597 49628 7731132500857765 src/CMakeFiles/manaplus.dir/gui/windows/worldselectdialog.cpp.obj 733607930d75763d +47671 49635 7731132521591457 src/CMakeFiles/manaplus.dir/net/messageout.cpp.obj 534e76157a858973 +44381 49257 7731132488689482 src/CMakeFiles/manaplus.dir/gui/windows/tradewindow.cpp.obj 7c78df7463acfa0a +45320 51072 7731132498075839 src/CMakeFiles/manaplus.dir/gui/windowmanager.cpp.obj f5bd26674f061ec6 +49257 50363 7731132537450373 src/CMakeFiles/manaplus.dir/net/updatetypeoperators.cpp.obj 7468a71f1a262e94 +47733 50327 7731132522200242 src/CMakeFiles/manaplus.dir/net/net.cpp.obj a7bd7c60e3d83b98 +46401 50370 7731132508883923 src/CMakeFiles/manaplus.dir/net/ipc.cpp.obj ea7a4b65b0e4476 +45486 51058 7731132499765860 src/CMakeFiles/manaplus.dir/gui/windowmenu.cpp.obj c48e187a75589490 +49635 51079 7731132541233625 src/CMakeFiles/manaplus.dir/net/packetcounters.cpp.obj 62e8933b9be45247 +49629 51583 7731132541163913 src/CMakeFiles/manaplus.dir/net/useragent.cpp.obj b9f36eba7a6f8594 +44966 50480 7731132494532588 src/CMakeFiles/manaplus.dir/progs/manaverse/gui/viewport.cpp.obj 9c673fcbf0249da0 +44508 51226 7731132489958986 src/CMakeFiles/manaplus.dir/gui/windows/updaterwindow.cpp.obj 4c13245e7bc71379 +46340 51789 7731132508274619 src/CMakeFiles/manaplus.dir/net/download.cpp.obj 24a3bffaaff7d81d +49681 51710 7731132541679933 src/CMakeFiles/manaplus.dir/resources/action.cpp.obj 5d7d7f50382c2d3f +48933 51957 7731132534199387 src/CMakeFiles/manaplus.dir/net/sdltcpnet.cpp.obj f636c4e959483f05 +50363 51776 7731132548501362 src/CMakeFiles/manaplus.dir/resources/animation/animation.cpp.obj 4598d14e5ead7230 +49642 51805 7731132541303684 src/CMakeFiles/manaplus.dir/net/packetlimiter.cpp.obj f9404d7ea5b6e95b +45331 53472 7731132498190468 src/CMakeFiles/manaplus.dir/gui/windows/whoisonline.cpp.obj e9f24cd3fe872481 +51072 53150 7731132555600897 src/CMakeFiles/manaplus.dir/resources/db/badgesdb.cpp.obj 60b05bd6a02dc143 +51058 53510 7731132555459058 src/CMakeFiles/manaplus.dir/resources/db/avatardb.cpp.obj ab6d264a36ddd1ea +51079 53229 7731132555670895 src/CMakeFiles/manaplus.dir/resources/beingcommon.cpp.obj 4b3786e53a3b1aed +51583 53065 7731132560709839 src/CMakeFiles/manaplus.dir/resources/beingslot.cpp.obj e9ddaedfbb2f7c3b +51710 53889 7731132561978188 src/CMakeFiles/manaplus.dir/resources/chatobject.cpp.obj bc3cdc9239e4a9fa +53065 54367 7731132575530379 src/CMakeFiles/manaplus.dir/resources/cursors.cpp.obj 9af5f96776b611d6 +51227 54613 7731132557139568 src/CMakeFiles/manaplus.dir/resources/beinginfo.cpp.obj cc9864ba97c2dfcd +50328 53815 7731132548151348 src/CMakeFiles/manaplus.dir/resources/ambientlayer.cpp.obj 698df5d1c4070c7a +51777 53689 7731132562652012 src/CMakeFiles/manaplus.dir/resources/db/chardb.cpp.obj bebbbb4da649ad8a +53230 54676 7731132577176349 src/CMakeFiles/manaplus.dir/resources/delayedmanager.cpp.obj eb049bec84c6c636 +51957 54064 7731132564457299 src/CMakeFiles/manaplus.dir/resources/db/commandsdb.cpp.obj ed8166a901c28c62 +50480 54205 7731132549677275 src/CMakeFiles/manaplus.dir/resources/atlas/atlasresource.cpp.obj 59e5e70cde086a97 +51790 54108 7731132562782020 src/CMakeFiles/manaplus.dir/resources/db/clandb.cpp.obj fe53705d515f1db9 +51805 54073 7731132562932011 src/CMakeFiles/manaplus.dir/resources/db/colordb.cpp.obj 31a6c3dd8e13e7a +53150 55437 7731132576381555 src/CMakeFiles/manaplus.dir/resources/dbmanager.cpp.obj 4ebd1eb9a9eedb1d +53472 55317 7731132579596296 src/CMakeFiles/manaplus.dir/resources/db/deaddb.cpp.obj 83d200aadf94cc74 +50370 54353 7731132548584294 src/CMakeFiles/manaplus.dir/resources/atlas/atlasmanager.cpp.obj 1855ba768a8d2696 +53511 55743 7731132579980080 src/CMakeFiles/manaplus.dir/resources/db/elementaldb.cpp.obj 97892bb385165627 +53689 55696 7731132581770548 src/CMakeFiles/manaplus.dir/resources/dye/dye.cpp.obj db1659372098a9b3 +53815 55559 7731132583031336 src/CMakeFiles/manaplus.dir/resources/dye/dyepalette.cpp.obj a08bbd18e136fe03 +54676 56188 7731132591640386 src/CMakeFiles/manaplus.dir/resources/groupinfo.cpp.obj 9b52a3243b2b1027 +53889 57323 7731132583770687 src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replaceacolor.cpp.obj 6bc5a2205d476fbc +54614 57296 7731132591019894 src/CMakeFiles/manaplus.dir/resources/db/horsedb.cpp.obj 1ea681deb322456b +54354 57543 7731132588427383 src/CMakeFiles/manaplus.dir/resources/db/groupdb.cpp.obj a403129855911e4 +54367 57550 7731132588557383 src/CMakeFiles/manaplus.dir/resources/db/homunculusdb.cpp.obj 4c654de2d065868 +54065 57441 7731132585521185 src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replaceaoglcolor.cpp.obj c04a51718df56e25 +54109 57649 7731132585968686 src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replacesoglcolor.cpp.obj f4c0ede6d2731d8f +54073 57657 7731132585611203 src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replacescolor.cpp.obj 109e42e24c124eae +54205 57066 7731132586931262 src/CMakeFiles/manaplus.dir/resources/db/emotedb.cpp.obj 6c5de7823058f8d5 +55438 58835 7731132599258987 src/CMakeFiles/manaplus.dir/resources/imagehelper.cpp.obj 31387b736a522d6a +55743 58001 7731132602318457 src/CMakeFiles/manaplus.dir/resources/db/itemfielddb.cpp.obj d1212b23bd917cb0 +56189 58192 7731132606764425 src/CMakeFiles/manaplus.dir/resources/db/itemoptiondb.cpp.obj c5b4bbb6ebaf160f +55317 59411 7731132598049739 src/CMakeFiles/manaplus.dir/resources/image/image.cpp.obj 664e2fb484d94aa4 +55561 59524 7731132600489073 src/CMakeFiles/manaplus.dir/resources/imageset.cpp.obj 98d29739ee325430 +55696 59418 7731132601853469 src/CMakeFiles/manaplus.dir/resources/db/itemdb.cpp.obj 5a6c3de175a0dadf +57649 59385 7731132621376481 src/CMakeFiles/manaplus.dir/resources/memorycounter.cpp.obj 31d9a400bbe36f17 +57066 59259 7731132615540231 src/CMakeFiles/manaplus.dir/resources/db/languagedb.cpp.obj 4873112295ec9deb +57657 59584 7731132621448306 src/CMakeFiles/manaplus.dir/resources/memorymanager.cpp.obj 84d14f9da03f749e +58192 59620 7731132626813172 src/CMakeFiles/manaplus.dir/resources/modinfo.cpp.obj 1d9eb385c9a58cac +57543 59638 7731132620313816 src/CMakeFiles/manaplus.dir/resources/db/moddb.cpp.obj 3fa47c375098940d +57441 59647 7731132619283353 src/CMakeFiles/manaplus.dir/resources/db/mercenarydb.cpp.obj 753c96f3e37a0eaf +57323 59719 7731132618106496 src/CMakeFiles/manaplus.dir/resources/db/mapdb.cpp.obj 662e2b4ab9dc548c +57296 60028 7731132617836505 src/CMakeFiles/manaplus.dir/resources/iteminfo.cpp.obj 42eaebb8b6fb288a +59259 61395 7731132637467320 src/CMakeFiles/manaplus.dir/resources/db/networkdb.cpp.obj 4b31c1ac64c8b743 +58835 61336 7731132633233588 src/CMakeFiles/manaplus.dir/resources/db/monsterdb.cpp.obj d8222ad529e95915 +59385 61848 7731132638731793 src/CMakeFiles/manaplus.dir/resources/db/npcdb.cpp.obj dc084682dac7c369 +59584 61720 7731132640733090 src/CMakeFiles/manaplus.dir/resources/db/palettedb.cpp.obj 2dd9dd72b7446b0 +59411 62086 7731132638984504 src/CMakeFiles/manaplus.dir/resources/db/npcdialogdb.cpp.obj 6289de82aa1f46df +58001 61701 7731132624888867 src/CMakeFiles/manaplus.dir/resources/mobileopenglscreenshothelper.cpp.obj 3abea84ac5f54e04 +60028 61636 7731132645162036 src/CMakeFiles/manaplus.dir/resources/loaders/atlasloader.cpp.obj c40313e1e06a97db +61336 62529 7731132658232461 src/CMakeFiles/manaplus.dir/resources/loaders/emptyatlasloader.cpp.obj f0a6511de48a3fbe +59720 61726 7731132642081357 src/CMakeFiles/manaplus.dir/resources/resource.cpp.obj 8d967338c44080f3 +59621 62327 7731132641083616 src/CMakeFiles/manaplus.dir/resources/db/petdb.cpp.obj 321bb25d043d77a9 +59649 62147 7731132641366295 src/CMakeFiles/manaplus.dir/resources/db/skillunitdb.cpp.obj a58c49337c4e3cbb +59638 62424 7731132641276382 src/CMakeFiles/manaplus.dir/resources/db/questdb.cpp.obj 99f14198c9c11a14 +59418 63029 7731132639054448 src/CMakeFiles/manaplus.dir/resources/openglimagehelper.cpp.obj 80a90cd4db29bf7d +57550 62692 7731132620381807 src/CMakeFiles/manaplus.dir/resources/mapreader.cpp.obj 9ef5a124e9613ea3 +59527 63209 7731132640150965 src/CMakeFiles/manaplus.dir/resources/openglscreenshothelper.cpp.obj 4b872a12c783b1cf +61727 63152 7731132662140322 src/CMakeFiles/manaplus.dir/resources/loaders/shaderloader.cpp.obj 469113d72f7f5a47 +61701 63106 7731132661889479 src/CMakeFiles/manaplus.dir/resources/loaders/musicloader.cpp.obj d79b3d97f74d9c4e +61848 63332 7731132663363950 src/CMakeFiles/manaplus.dir/resources/loaders/shaderprogramloader.cpp.obj 85640fc2883ed4f1 +62088 63571 7731132665766397 src/CMakeFiles/manaplus.dir/resources/loaders/soundloader.cpp.obj 5b66290fdbcd89a0 +62529 64102 7731132670185222 src/CMakeFiles/manaplus.dir/resources/loaders/walklayerloader.cpp.obj 376dd76d0e7d6110 +62147 63986 7731132666345626 src/CMakeFiles/manaplus.dir/resources/loaders/spritedefloader.cpp.obj c5f5ad31b0db32cb +63571 63757 7731132680607212 src/CMakeFiles/manaplus.dir/resources/sdlgfxblitfunc.cpp.obj ab921ddf676b769e +63757 63946 7731132682461317 src/CMakeFiles/manaplus.dir/resources/sdlimagehelper.cpp.obj f82b2a45dc64635f +61395 65265 7731132658829513 src/CMakeFiles/manaplus.dir/resources/loaders/imageloader.cpp.obj d499999952ec32ea +62693 64350 7731132671807589 src/CMakeFiles/manaplus.dir/resources/loaders/xmlloader.cpp.obj 97b64f9283d23ff4 +61636 65746 7731132661236997 src/CMakeFiles/manaplus.dir/resources/loaders/imagesetloader.cpp.obj fd39f419cfc2dbfe +63946 65333 7731132684344101 src/CMakeFiles/manaplus.dir/resources/sdlmusic.cpp.obj 95e4fa51fb554f58 +63332 64899 7731132678194763 src/CMakeFiles/manaplus.dir/resources/sdl2softwarescreenshothelper.cpp.obj cc39f11687859b4c +63986 65379 7731132684744019 src/CMakeFiles/manaplus.dir/resources/sdlscreenshothelper.cpp.obj 9e8b75e881ee6d33 +64103 66070 7731132685904498 src/CMakeFiles/manaplus.dir/resources/db/sounddb.cpp.obj e1446a493e02eb00 +61720 66001 7731132662070314 src/CMakeFiles/manaplus.dir/resources/loaders/rescaledloader.cpp.obj fda9ea9840a88913 +62327 66529 7731132668163642 src/CMakeFiles/manaplus.dir/resources/loaders/subimageloader.cpp.obj fd951b69d45228e8 +65265 67240 7731132697530289 src/CMakeFiles/manaplus.dir/resources/db/textdb.cpp.obj 1a5f6c12d377f68e +62425 66685 7731132669128588 src/CMakeFiles/manaplus.dir/resources/loaders/subimagesetloader.cpp.obj 275d583c3bc44ae6 +64350 66474 7731132688379355 src/CMakeFiles/manaplus.dir/resources/db/statdb.cpp.obj 8ad9d1c03419fb9b +64899 67170 7731132693869296 src/CMakeFiles/manaplus.dir/resources/db/statuseffectdb.cpp.obj b82b21f6d367029e +65379 67163 7731132698668698 src/CMakeFiles/manaplus.dir/resources/db/weaponsdb.cpp.obj 5d4662c38d98af3a +65746 67251 7731132702343551 src/CMakeFiles/manaplus.dir/resources/soundeffect.cpp.obj 8cd19f85c8a1c9e8 +63153 67135 7731132676421592 src/CMakeFiles/manaplus.dir/resources/sdl2imagehelper.cpp.obj e1a8a8b9e7bbc7e9 +65333 67592 7731132698213285 src/CMakeFiles/manaplus.dir/resources/db/unitsdb.cpp.obj 15450598cf83b9b2 +63107 67144 7731132675953897 src/CMakeFiles/manaplus.dir/resources/safeopenglimagehelper.cpp.obj 6c7d9703b4943902 +63209 66902 7731132676971142 src/CMakeFiles/manaplus.dir/resources/sdl2softwareimagehelper.cpp.obj 35c0fad0bcd8226e +63029 67881 7731132675171944 src/CMakeFiles/manaplus.dir/resources/resourcemanager/resourcemanager.cpp.obj e24fd8697f574943 +66685 68539 7731132711722397 src/CMakeFiles/manaplus.dir/utils/translation/podict.cpp.obj af700c669938a7c +66529 68759 7731132710164917 src/CMakeFiles/manaplus.dir/resources/wallpaper.cpp.obj 9d76d74e96fd4958 +66002 68901 7731132704888191 src/CMakeFiles/manaplus.dir/resources/sprite/spritedef.cpp.obj e4982fe8d7f10db8 +67144 68753 7731132716325301 src/CMakeFiles/manaplus.dir/utils/base64.cpp.obj a51202224a0ff952 +67241 68746 7731132717297994 src/CMakeFiles/manaplus.dir/utils/checkutils.cpp.obj d2e2674cc8baa0a5 +67252 68886 7731132717391312 src/CMakeFiles/manaplus.dir/utils/copynpaste.cpp.obj 49880a7d1bac7125 +67136 69888 7731132716245299 src/CMakeFiles/manaplus.dir/utils/translation/translationmanager.cpp.obj ee9d06dfb0a20f7b +66903 69651 7731132713901405 src/CMakeFiles/manaplus.dir/utils/translation/poparser.cpp.obj bd1a273990f50603 +66474 70215 7731132709620792 src/CMakeFiles/manaplus.dir/resources/surfaceimagehelper.cpp.obj 4b7ad1a07f4b7896 +66070 69993 7731132705576030 src/CMakeFiles/manaplus.dir/resources/image/subimage.cpp.obj 852a3754d57104a5 +67163 69520 7731132716515848 src/CMakeFiles/manaplus.dir/utils/browserboxtools.cpp.obj 36cb882d4ddd06d3 +68539 69895 7731132730268008 src/CMakeFiles/manaplus.dir/utils/dumpsizes.cpp.obj c2debed77de14069 +68759 69986 7731132732474712 src/CMakeFiles/manaplus.dir/utils/fuzzer.cpp.obj 87c41a451c8a2936 +69987 70986 7731132744744423 src/CMakeFiles/manaplus.dir/utils/performance.cpp.obj 60ca1f646b246ff5 +67171 70157 7731132716586064 src/CMakeFiles/manaplus.dir/utils/chatutils.cpp.obj 9f467addf4a7be49 +68746 70414 7731132732334711 src/CMakeFiles/manaplus.dir/utils/env.cpp.obj e427ae829742444c +67593 70542 7731132720802634 src/CMakeFiles/manaplus.dir/utils/cpu.cpp.obj e69fd0e8e7185d4a +68886 70662 7731132733739077 src/CMakeFiles/manaplus.dir/utils/gettexthelper.cpp.obj c694c89e4c067c2 +69888 71814 7731132743760737 src/CMakeFiles/manaplus.dir/utils/parameters.cpp.obj d2974f7a28ecf5f3 +69993 71592 7731132744814423 src/CMakeFiles/manaplus.dir/utils/perfstat.cpp.obj 958cd37b93d96e0c +69651 71604 7731132741385571 src/CMakeFiles/manaplus.dir/utils/langs.cpp.obj fc6db9d7ea125f81 +69520 71610 7731132740078320 src/CMakeFiles/manaplus.dir/utils/itemxmlutils.cpp.obj 7b7e998af6e2fa57 +70157 71788 7731132746447511 src/CMakeFiles/manaplus.dir/utils/pnglib.cpp.obj a1a0b609b66871d4 +68901 71046 7731132733889075 src/CMakeFiles/manaplus.dir/utils/gmfunctions.cpp.obj 6e7a7573b7a4b64b +70215 71795 7731132747035775 src/CMakeFiles/manaplus.dir/fs/virtfs/rwops.cpp.obj defe24c9f88229dd +70542 71907 7731132750298148 src/CMakeFiles/manaplus.dir/fs/virtfs/list.cpp.obj 22b9c05d36918b03 +70986 72204 7731132754741485 src/CMakeFiles/manaplus.dir/fs/virtfs/direntry.cpp.obj b5066a1f8908691a +71592 73242 7731132760800099 src/CMakeFiles/manaplus.dir/fs/virtfs/fsdirrwops.cpp.obj 1640943188adf3e6 +71604 73355 7731132760920376 src/CMakeFiles/manaplus.dir/fs/virtfs/fsentry.cpp.obj 65ab49d20fa1509e +71788 73578 7731132762756477 src/CMakeFiles/manaplus.dir/fs/virtfs/fsziprwops.cpp.obj c126f0073c40a32e +70415 72551 7731132749031781 src/CMakeFiles/manaplus.dir/fs/virtfs/tools.cpp.obj 9f6ac40100ba2ec4 +70662 72473 7731132751503545 src/CMakeFiles/manaplus.dir/fs/virtfs/fs.cpp.obj 4391a8393ad01438 +71795 73797 7731132762829119 src/CMakeFiles/manaplus.dir/fs/virtfs/zipentry.cpp.obj 533e075e94a40b9a +71611 73735 7731132760980374 src/CMakeFiles/manaplus.dir/fs/virtfs/fszip.cpp.obj ef919fcff5a6ca48 +73355 73763 7731132778432061 src/CMakeFiles/manaplus.dir/utils/sdlhelper.cpp.obj f8fcdfab4f052c3d +67881 72121 7731132723697996 src/CMakeFiles/manaplus.dir/utils/dumplibs.cpp.obj 199d4d898c8eb719 +73381 73754 7731132778692059 src/CMakeFiles/manaplus.dir/utils/sdlmusichelper.cpp.obj a7504f4efaebb92 +71815 73940 7731132763021042 src/CMakeFiles/manaplus.dir/fs/virtfs/zipreader.cpp.obj c27451dd1b56f83f +73735 73964 7731132782242756 src/CMakeFiles/manaplus.dir/utils/naclmessages.cpp.obj c0b50ad81994774e +71907 73381 7731132763947665 src/CMakeFiles/manaplus.dir/fs/virtfs/ziplocalheader.cpp.obj 6f118af6c4300c8a +73243 73990 7731132777301645 src/CMakeFiles/manaplus.dir/utils/sdlcheckutils.cpp.obj bb7f56dd887fc740 +72552 73633 7731132770407059 src/CMakeFiles/manaplus.dir/utils/sdl2musichelper.cpp.obj 4eea4d3686dc63ef +73602 74577 7731132780903167 src/CMakeFiles/manaplus.dir/utils/timer.cpp.obj cabb41588625042f +73633 74537 7731132781206243 src/CMakeFiles/manaplus.dir/fs/virtfs/file.cpp.obj 8fcdead1ec62cdb5 +72474 73897 7731132769624187 src/CMakeFiles/manaplus.dir/utils/sdl2logger.cpp.obj 70bdff7654ba64f1 +68753 73601 7731132732404720 src/CMakeFiles/manaplus.dir/fs/files.cpp.obj 67135355f515fd3c +73763 74706 7731132782512754 src/CMakeFiles/manaplus.dir/utils/mrand.cpp.obj 467f0437a7806bdd +69895 75143 7731132743832582 src/CMakeFiles/manaplus.dir/fs/paths.cpp.obj 63af6cd7e94ed4d5 +71047 75646 7731132755341069 src/CMakeFiles/manaplus.dir/fs/virtfs/fsdir.cpp.obj 56587af3f01a611a +73797 75844 7731132782849823 src/CMakeFiles/manaplus.dir/utils/xmlutils.cpp.obj 9412e93e5bf70a90 +73578 76708 7731132780663148 src/CMakeFiles/manaplus.dir/utils/stringutils.cpp.obj bc143f2160d4e9a6 +73897 76207 7731132783850563 src/CMakeFiles/manaplus.dir/utils/xml/libxml.cpp.obj 3f1713901e90f86d +73964 76196 7731132784524732 src/CMakeFiles/manaplus.dir/test/testmain.cpp.obj c23d23063785d56c +72204 75993 7731132766931161 src/CMakeFiles/manaplus.dir/utils/sdl2helper.cpp.obj c70a31233dba94b +72122 76216 7731132766101314 src/CMakeFiles/manaplus.dir/utils/process.cpp.obj 1a9ece387bfb5be8 +75143 78352 7731132796312438 src/CMakeFiles/manaplus.dir/progs/manaverse/actions/pets.cpp.obj df7be16fda64ed05 +73755 78345 7731132782422766 src/CMakeFiles/manaplus.dir/fs/mkdir.cpp.obj 2d92f03850e0a1e0 +75993 78602 7731132804816280 src/CMakeFiles/manaplus.dir/progs/manaverse/actions/target.cpp.obj dd86ebc0afa2b0f8 +76208 78434 7731132806961471 src/CMakeFiles/manaplus.dir/being/actor.cpp.obj 9bdcc4d0c1228d9c +75646 78610 7731132801342615 src/CMakeFiles/manaplus.dir/progs/manaverse/actions/statusbar.cpp.obj d49d552ac19ddcc9 +73940 79309 7731132784279088 src/CMakeFiles/manaplus.dir/test/testlauncher.cpp.obj 40d3da16c310854f +76709 78618 7731132811967671 src/CMakeFiles/manaplus.dir/enums/being/attributesstrings.cpp.obj 1b27fecf8e99f14f +78345 79708 7731132828326139 src/CMakeFiles/manaplus.dir/listeners/arrowslistener.cpp.obj df8d6d42ad5cb0c8 +74537 79545 7731132790252254 src/CMakeFiles/manaplus.dir/progs/manaverse/actions/chat.cpp.obj c59bfb27c808b571 +75844 79475 7731132803330370 src/CMakeFiles/manaplus.dir/progs/manaverse/actions/tabs.cpp.obj 664436a70a87509d +74707 79559 7731132791947184 src/CMakeFiles/manaplus.dir/progs/manaverse/actions/move.cpp.obj 9a81e649ff289a4e +78434 79694 7731132829214656 src/CMakeFiles/manaplus.dir/listeners/attributelistener.cpp.obj 5f90b2339532dc52 +78353 79812 7731132828406141 src/CMakeFiles/manaplus.dir/listeners/assertlistener.cpp.obj 90ef0c45426cec50 +73991 80170 7731132784794719 src/CMakeFiles/manaplus.dir/progs/manaverse/actions/actions.cpp.obj d586272c558435e9 +74577 81501 7731132790654669 src/CMakeFiles/manaplus.dir/progs/manaverse/actions/commands.cpp.obj e9952fe2c8ed3af7 +76197 80409 7731132806861474 src/CMakeFiles/manaplus.dir/progs/manaverse/actions/windows.cpp.obj 3157fb0a70483956 +79559 81443 7731132840468902 src/CMakeFiles/manaplus.dir/avatar.cpp.obj 50ca94efb9b21bb1 +79476 81473 7731132839633387 src/CMakeFiles/manaplus.dir/resources/sprite/animationdelayload.cpp.obj 8e1f0c54bff423e6 +76218 81279 7731132807061481 src/CMakeFiles/manaplus.dir/being/actorsprite.cpp.obj 3004e4d1109684c +79546 81771 7731132840338905 src/CMakeFiles/manaplus.dir/particle/animationparticle.cpp.obj a2b0efe42076985e +79812 81467 7731132843005368 src/CMakeFiles/manaplus.dir/being/localclan.cpp.obj 299c624e66816ff1 +79708 81889 7731132841971218 src/CMakeFiles/manaplus.dir/being/castingeffect.cpp.obj 25f6ba65eaec3e16 +78611 81880 7731132830978714 src/CMakeFiles/manaplus.dir/listeners/charrenamelistener.cpp.obj 17c34c80f35b3ced +80170 82056 7731132846581725 src/CMakeFiles/manaplus.dir/beingequipbackend.cpp.obj 449086c227c8c3d0 +81467 83738 7731132859544908 src/CMakeFiles/manaplus.dir/commandline.cpp.obj 2542c7fb927e26fa +78603 82263 7731132830906035 src/CMakeFiles/manaplus.dir/listeners/awaylistener.cpp.obj 8ea40ad943c39c5f +81881 83543 7731132863696500 src/CMakeFiles/manaplus.dir/listeners/debugmessagelistener.cpp.obj 429af8603aa78f94 +79309 83415 7731132837966934 src/CMakeFiles/manaplus.dir/resources/sprite/animatedsprite.cpp.obj 43f24e207839fd59 +81474 83729 7731132859614907 src/CMakeFiles/manaplus.dir/configmanager.cpp.obj 86c2307f06227a5a +80410 86032 7731132848973466 src/CMakeFiles/manaplus.dir/spellmanager.cpp.obj 8520c232544645f5 +83415 86434 7731132879034687 src/CMakeFiles/manaplus.dir/effectmanager.cpp.obj df7bb52f9526b150 +81890 86039 7731132863779230 src/CMakeFiles/manaplus.dir/configuration.cpp.obj 322efe33cb79ed89 +81771 86339 7731132862586630 src/CMakeFiles/manaplus.dir/being/crazymoves.cpp.obj 5a7dbceebc39d1b2 +81279 86326 7731132857664735 src/CMakeFiles/manaplus.dir/chatlogger.cpp.obj a37af19989e74032 +81501 86443 7731132859888441 src/CMakeFiles/manaplus.dir/being/compoundsprite.cpp.obj 30e1e4cb0a7973ab +83545 86453 7731132880326956 src/CMakeFiles/manaplus.dir/gui/shortcut/emoteshortcut.cpp.obj 989adbf6a98f2937 +83729 86543 7731132882171952 src/CMakeFiles/manaplus.dir/eventsmanager.cpp.obj a0d00d87f4da632a +78618 86401 7731132831058728 src/CMakeFiles/manaplus.dir/actormanager.cpp.obj 5e3ca752b3219c7e +82056 87264 7731132865438858 src/CMakeFiles/manaplus.dir/defaults.cpp.obj 35c4f96949934393 +79695 88047 7731132841841235 src/CMakeFiles/manaplus.dir/being/being.cpp.obj 7f9ef67502bd51ac +82264 88092 7731132867514990 src/CMakeFiles/manaplus.dir/dirs.cpp.obj 4fc7d5b2fa385c44 +81443 90928 7731132859309633 src/CMakeFiles/manaplus.dir/progs/manaverse/client.cpp.obj f0c2d768142db9ad +86434 90878 7731132909231424 src/CMakeFiles/manaplus.dir/render/vertexes/imagevertexes.cpp.obj aec1166bda609d86 +86401 90955 7731132908883564 src/CMakeFiles/manaplus.dir/render/vertexes/imagecollection.cpp.obj e64afa9833452a41 +86453 90962 7731132909411425 src/CMakeFiles/manaplus.dir/guild.cpp.obj 78c946d1f0344179 +83739 87725 7731132882265712 src/CMakeFiles/manaplus.dir/being/flooritem.cpp.obj 9bb516931d73ed55 +87725 90575 7731132922128271 src/CMakeFiles/manaplus.dir/resources/inventory/complexinventory.cpp.obj 4167a271c8806063 +88093 88959 7731132925804846 src/CMakeFiles/manaplus.dir/resources/item/cardslist.cpp.obj 4dab5371a36c6731 +86039 91011 7731132905270167 src/CMakeFiles/manaplus.dir/gamemodifiers.cpp.obj 20e79d589f803b90 +86444 91155 7731132909321431 src/CMakeFiles/manaplus.dir/render/vertexes/openglgraphicsvertexes.cpp.obj ae0eaf2b01a1f5c6 +86326 91119 7731132908139878 src/CMakeFiles/manaplus.dir/render/graphics.cpp.obj 671b5821f8c4def9 +86544 91771 7731132910315374 src/CMakeFiles/manaplus.dir/particle/imageparticle.cpp.obj 90f2954e7043fb7c +88048 90693 7731132925358085 src/CMakeFiles/manaplus.dir/resources/inventory/inventory.cpp.obj 952b9369b93b0a01 +86340 91761 7731132908269887 src/CMakeFiles/manaplus.dir/graphicsmanager.cpp.obj 5a46eac19aacb56e +90694 92201 7731132951815993 src/CMakeFiles/manaplus.dir/itemcolormanager.cpp.obj 343d1a7e3bcf32f3 +87264 91638 7731132917522428 src/CMakeFiles/manaplus.dir/resources/sprite/imagesprite.cpp.obj 87e969a058fcf726 +88959 91133 7731132934468296 src/CMakeFiles/manaplus.dir/resources/item/complexitem.cpp.obj c6e637a9b0b758cb +91120 92104 7731132956097382 src/CMakeFiles/manaplus.dir/input/inputactionoperators.cpp.obj 7d16f80f50fe1d20 +90962 92718 7731132954497512 src/CMakeFiles/manaplus.dir/gui/shortcut/spellshortcut.cpp.obj 8d8ee5edb185a4f7 +86032 92597 7731132905202798 src/CMakeFiles/manaplus.dir/game.cpp.obj 28570b1620ec9e73 +90928 93808 7731132954162754 src/CMakeFiles/manaplus.dir/itemsoundmanager.cpp.obj 1b52aea8eab3e1c0 +90955 93899 7731132954427507 src/CMakeFiles/manaplus.dir/gui/shortcut/dropshortcut.cpp.obj 780f7df4722683f1 +91638 94357 7731132961273503 src/CMakeFiles/manaplus.dir/input/keyboardconfig.cpp.obj 1d14f2b9321a4937 +91762 93983 7731132962496182 src/CMakeFiles/manaplus.dir/input/touch/multitouchmanager.cpp.obj a1ed7b8982b1d5d5 +90878 95432 7731132953658655 src/CMakeFiles/manaplus.dir/gui/shortcut/itemshortcut.cpp.obj 9b4bb1f638071b28 +92202 95662 7731132966897818 src/CMakeFiles/manaplus.dir/main.cpp.obj 80f6a3b48a05bc2f +90575 95338 7731132950625483 src/CMakeFiles/manaplus.dir/resources/item/item.cpp.obj 6f95f7925005398a +93808 95878 7731132982966941 src/CMakeFiles/manaplus.dir/resources/map/mapheights.cpp.obj c57f36f2ede238b0 +91011 96113 7731132954994379 src/CMakeFiles/manaplus.dir/textcommand.cpp.obj 1acd6444c07eb139 +94357 96086 7731132988455407 src/CMakeFiles/manaplus.dir/resources/map/objectslayer.cpp.obj 5e0eb786d8578c4d +91156 95681 7731132956451227 src/CMakeFiles/manaplus.dir/input/joystick.cpp.obj 436a2958269b5e5d +96086 96535 7731133005738477 src/CMakeFiles/manaplus.dir/render/nacl/naclgles.cpp.obj fe0223c75605f196 +95338 99391 7731132998256745 src/CMakeFiles/manaplus.dir/render/opengl/mgl.cpp.obj 29134b42f1a3da45 +92105 97902 7731132965928623 src/CMakeFiles/manaplus.dir/logger.cpp.obj 7d0b0075d14c077b +95432 99399 7731132999197551 src/CMakeFiles/manaplus.dir/render/opengl/mglemu.cpp.obj a8fb0f7573c8da0 +92597 98151 7731132970858583 src/CMakeFiles/manaplus.dir/maingui.cpp.obj daf53d1afc1785d6 +93899 98076 7731132983871130 src/CMakeFiles/manaplus.dir/resources/map/mapitem.cpp.obj c5ad6abb4933d8a3 +96536 99729 7731133010242604 src/CMakeFiles/manaplus.dir/navigationmanager.cpp.obj 5a42cdb5ad435132 +91771 99406 7731132962589234 src/CMakeFiles/manaplus.dir/being/localplayer.cpp.obj c9643f079932770d +99399 100322 7731133038864244 src/CMakeFiles/manaplus.dir/render/renderers.cpp.obj a057fe249768c6a6 +92718 99722 7731132972060064 src/CMakeFiles/manaplus.dir/resources/map/map.cpp.obj 4972cf69f26ab2fb +95682 100955 7731133001695689 src/CMakeFiles/manaplus.dir/render/mobileopenglgraphics.cpp.obj 9e2a4dce3d669826 +93983 99785 7731132984700388 src/CMakeFiles/manaplus.dir/resources/map/maplayer.cpp.obj 41b8022e084297cb +96113 100651 7731133006010435 src/CMakeFiles/manaplus.dir/mumblemanager.cpp.obj 87eaae15327b0438 +98152 100084 7731133026400249 src/CMakeFiles/manaplus.dir/render/imagegraphics.cpp.obj 1399f7126b813ffd +95663 100674 7731133001503689 src/CMakeFiles/manaplus.dir/render/mobileopengl2graphics.cpp.obj 96e7aa379b3e65e1 +95878 100964 7731133003660568 src/CMakeFiles/manaplus.dir/render/modernopenglgraphics.cpp.obj 6b6ea9a8533e31a3 +99722 100748 7731133042097462 src/CMakeFiles/manaplus.dir/particle/particlecontainer.cpp.obj 48f504c965822870 +91134 100614 7731132956231214 src/CMakeFiles/manaplus.dir/input/inputmanager.cpp.obj 5eb34096b7b794cd +98077 100943 7731133025651957 src/CMakeFiles/manaplus.dir/notifymanager.cpp.obj 185775bba8cd7de6 +100749 101681 7731133052382554 src/CMakeFiles/manaplus.dir/being/playerrelation.cpp.obj 6246f1d54a8a5060 +100085 101965 7731133045725455 src/CMakeFiles/manaplus.dir/particle/particlelist.cpp.obj 61eeb456570a906 +99391 103954 7731133038792050 src/CMakeFiles/manaplus.dir/render/nullopenglgraphics.cpp.obj 58f226559951801c +100322 102917 7731133048101115 src/CMakeFiles/manaplus.dir/particle/particlevector.cpp.obj 4f0b26e31b414abe +100965 103575 7731133054529381 src/CMakeFiles/manaplus.dir/position.cpp.obj fdcb1e194dedef6a +97902 102164 7731133023893888 src/CMakeFiles/manaplus.dir/render/normalopenglgraphics.cpp.obj f2f547776d656f8f +99786 102797 7731133042734985 src/CMakeFiles/manaplus.dir/particle/particleengine.cpp.obj d159ecff203eee2 +101681 103834 7731133061692188 src/CMakeFiles/manaplus.dir/resources/map/speciallayer.cpp.obj 5e6cd074833f647 +103835 104216 7731133083222752 src/CMakeFiles/manaplus.dir/render/sdlgraphics.cpp.obj 67a95115b98f84ac +100615 104327 7731133051028784 src/CMakeFiles/manaplus.dir/party.cpp.obj fe5b391ebf3c80ac +100651 104681 7731133051411921 src/CMakeFiles/manaplus.dir/pincodemanager.cpp.obj e88781382b97440f +101965 104039 7731133064529487 src/CMakeFiles/manaplus.dir/resources/map/tileanimation.cpp.obj 93563da8bc1aeefd +100944 105045 7731133054319371 src/CMakeFiles/manaplus.dir/being/playerrelations.cpp.obj c47f890531874a0c +99407 104664 7731133038944240 src/CMakeFiles/manaplus.dir/particle/particle.cpp.obj b481b026d1ded0ff +100955 105333 7731133054429365 src/CMakeFiles/manaplus.dir/listeners/renamelistener.cpp.obj b85837508ab19e28 +102164 104113 7731133066523649 src/CMakeFiles/manaplus.dir/particle/rotationalparticle.cpp.obj 65b83eb07d8cc574 +99730 105009 7731133042169443 src/CMakeFiles/manaplus.dir/particle/particleemitter.cpp.obj 42849b611d337408 +103954 106393 7731133084424748 src/CMakeFiles/manaplus.dir/settings.cpp.obj 212aea267b54c812 +104039 106520 7731133085261750 src/CMakeFiles/manaplus.dir/resources/item/shopitem.cpp.obj 43b7808b552073eb +104113 106111 7731133086024704 src/CMakeFiles/manaplus.dir/gui/shortcut/shortcutbase.cpp.obj 10e4bbc31e692eb3 +104216 106224 7731133087033250 src/CMakeFiles/manaplus.dir/resources/animation/simpleanimation.cpp.obj eef623e0a6c9a5b3 +100675 106944 7731133051623401 src/CMakeFiles/manaplus.dir/being/playerinfo.cpp.obj e82a51279e17d90b +104664 106737 7731133091526710 src/CMakeFiles/manaplus.dir/statuseffect.cpp.obj e31a00962297b643 +102797 106400 7731133072851051 src/CMakeFiles/manaplus.dir/render/safeopenglgraphics.cpp.obj a6e7fee124fadf8d +102917 106773 7731133074043743 src/CMakeFiles/manaplus.dir/render/sdl2graphics.cpp.obj d2974fb40f921618 +103576 107938 7731133080633370 src/CMakeFiles/manaplus.dir/render/sdl2softwaregraphics.cpp.obj f050bd9ed1c63bc3 +106400 108212 7731133108882681 src/CMakeFiles/manaplus.dir/input/touch/touchactions.cpp.obj ab175200a964a0a +106773 108514 7731133112612193 src/CMakeFiles/manaplus.dir/resources/map/walklayer.cpp.obj 9cb76e98c5ee5a6b +107939 109213 7731133124266588 src/CMakeFiles/manaplus.dir/listeners/gamemodifierlistener.cpp.obj 2589177838a80676 +106945 108766 7731133114332192 src/CMakeFiles/manaplus.dir/listeners/errorlistener.cpp.obj 4079660b202bbfc1 +104328 108521 7731133088158403 src/CMakeFiles/manaplus.dir/soundmanager.cpp.obj 67c1331e623cfcb4 +106737 108733 7731133112252197 src/CMakeFiles/manaplus.dir/resources/vector.cpp.obj c105898683a9fdf9 +104682 108244 7731133091696748 src/CMakeFiles/manaplus.dir/render/surfacegraphics.cpp.obj 48b225018ac08617 +108212 109876 7731133126998349 src/CMakeFiles/manaplus.dir/listeners/guitableactionlistener.cpp.obj ee592d1dcf8c3f94 +106224 110055 7731133107119513 src/CMakeFiles/manaplus.dir/textmanager.cpp.obj 9c000f141b4da7ac +105009 108494 7731133094975107 src/CMakeFiles/manaplus.dir/render/shaders/shader.cpp.obj 7ba5308075863d13 +105047 108633 7731133095342788 src/CMakeFiles/manaplus.dir/render/shaders/shaderprogram.cpp.obj 14860ed06161b10c +108521 110096 7731133130093386 src/CMakeFiles/manaplus.dir/listeners/playerdeathlistener.cpp.obj 66f4229e865316fe +108245 110062 7731133127327152 src/CMakeFiles/manaplus.dir/listeners/inputactionremotelistener.cpp.obj f09771f808102fe2 +106393 110694 7731133108803026 src/CMakeFiles/manaplus.dir/particle/textparticle.cpp.obj dbd9dbafa86b449c +105333 109715 7731133098206600 src/CMakeFiles/manaplus.dir/render/shaders/shadersmanager.cpp.obj ab580ba2fc8f78b5 +108734 110287 7731133132223778 src/CMakeFiles/manaplus.dir/listeners/statlistener.cpp.obj 571ff4980849a02a +106112 110468 7731133105989636 src/CMakeFiles/manaplus.dir/text.cpp.obj ad18cbdc134c2a63 +110055 111416 7731133145425990 src/CMakeFiles/manaplus.dir/utils/sdlsharedhelper.cpp.obj 9900606cf80a79a6 +109715 111164 7731133142026273 src/CMakeFiles/manaplus.dir/listeners/updatestatuslistener.cpp.obj 26dca3f179520391 +110468 111633 7731133149557248 src/CMakeFiles/manaplus.dir/input/key.cpp.obj b2d38425b2f3f527 +106521 111640 7731133110097827 src/CMakeFiles/manaplus.dir/input/touch/touchmanager.cpp.obj 8f423f31572f4ee1 +109876 111582 7731133143636524 src/CMakeFiles/manaplus.dir/listeners/uploadlistener.cpp.obj f64fd177c297bb46 +109213 111575 7731133137013763 src/CMakeFiles/manaplus.dir/listeners/tooltiplistener.cpp.obj 4d87c46636c378ee +110096 112144 7731133145837690 src/CMakeFiles/manaplus.dir/gui/widgets/basiccontainer.cpp.obj 4cd82db1dd85e15c +108514 112014 7731133130011954 src/CMakeFiles/manaplus.dir/listeners/inputactionreplaylistener.cpp.obj ac561d0cab57c302 +108494 111966 7731133129821876 src/CMakeFiles/manaplus.dir/listeners/inputactionreplayconfirmlistener.cpp.obj 5907c52888d02e6a +111164 112479 7731133156509940 src/CMakeFiles/manaplus.dir/gui/widgets/basiccontainer2.cpp.obj d1c2afc8312f17d +108767 112112 7731133132550915 src/CMakeFiles/manaplus.dir/listeners/textskilllistener.cpp.obj 8f6a38c2a7a52bc0 +110695 113199 7731133151816256 src/CMakeFiles/manaplus.dir/gui/widgets/widget.cpp.obj 292e6a06c0681239 +108637 112650 7731133131245234 src/CMakeFiles/manaplus.dir/listeners/playerlistener.cpp.obj 19a1d15ebcac739 +110062 113084 7731133145506003 src/CMakeFiles/manaplus.dir/listeners/wrongdatanoticelistener.cpp.obj cc38495cd94f9b69 +112014 113276 7731133165030056 src/CMakeFiles/manaplus.dir/listeners/banklistener.cpp.obj 469f9502fbb1d6d1 +112113 113316 7731133166002698 src/CMakeFiles/manaplus.dir/listeners/buyingstoremodelistener.cpp.obj 4db11a039e6e89a9 +112144 113337 7731133166318628 src/CMakeFiles/manaplus.dir/listeners/buyingstoreslotslistener.cpp.obj f11d42b0e10e406b +111417 115130 7731133159039523 src/CMakeFiles/manaplus.dir/gui/windows/bankwindow.cpp.obj 359f7ff5bacaa768 +113085 114509 7731133175743157 src/CMakeFiles/manaplus.dir/listeners/newpincoderetrylistener.cpp.obj 79229fce640ceca4 +111575 115347 7731133160631215 src/CMakeFiles/manaplus.dir/gui/windows/buyingstoreselldialog.cpp.obj 597c14056a519b29 +111582 115370 7731133160701231 src/CMakeFiles/manaplus.dir/gui/windows/eggselectiondialog.cpp.obj 8e5191118a3e194f +110287 115012 7731133147757395 src/CMakeFiles/manaplus.dir/gui/dialogsmanager.cpp.obj 996be120f0fb6d49 +111640 115602 7731133161276898 src/CMakeFiles/manaplus.dir/gui/windows/mailviewwindow.cpp.obj 4202148a96fc9df9 +113337 114614 7731133178253445 src/CMakeFiles/manaplus.dir/listeners/vendingmodelistener.cpp.obj 8b4ee86a0bed78c7 +114509 115820 7731133189970151 src/CMakeFiles/manaplus.dir/listeners/vendingslotslistener.cpp.obj b86075640165b09d +111633 115676 7731133161205530 src/CMakeFiles/manaplus.dir/gui/windows/maileditwindow.cpp.obj 10355564a487bd60 +114614 116060 7731133191022670 src/CMakeFiles/manaplus.dir/net/eathena/achievementrecv.cpp.obj c681594a4e3965f6 +115012 116550 7731133194995647 src/CMakeFiles/manaplus.dir/net/eathena/adminrecv.cpp.obj efe9ded572dbeefb +112480 116416 7731133169679106 src/CMakeFiles/manaplus.dir/listeners/changepincodelistener.cpp.obj c4ad81708c8ec70c +113199 116713 7731133176884110 src/CMakeFiles/manaplus.dir/listeners/pincodelistener.cpp.obj 7a3a7c8f44ec3537 +115347 116651 7731133198348565 src/CMakeFiles/manaplus.dir/net/eathena/achievementhandler.cpp.obj 4e10873f73a90aab +112650 116213 7731133171385288 src/CMakeFiles/manaplus.dir/listeners/newpincodelistener.cpp.obj dc7432d7e58f68f +115131 117492 7731133196188838 src/CMakeFiles/manaplus.dir/net/eathena/adminhandler.cpp.obj 525a08ca95ab0d73 +115371 116674 7731133198588571 src/CMakeFiles/manaplus.dir/net/eathena/attendancehandler.cpp.obj fc23da7ec2063fd +116214 117449 7731133207008695 src/CMakeFiles/manaplus.dir/net/eathena/bankhandler.cpp.obj 9e7fcba4b62f9dc3 +111966 117243 7731133164546991 src/CMakeFiles/manaplus.dir/gui/windows/mailwindow.cpp.obj c5a0cba23bbc02c2 +115603 116977 7731133200899008 src/CMakeFiles/manaplus.dir/net/eathena/attendancerecv.cpp.obj c2cdedd166a2c384 +113276 116725 7731133177646301 src/CMakeFiles/manaplus.dir/listeners/shoprenamelistener.cpp.obj e869523c54778ac3 +115676 117043 7731133201640016 src/CMakeFiles/manaplus.dir/net/eathena/auctionrecv.cpp.obj a8c192734fa59781 +115820 117289 7731133203085628 src/CMakeFiles/manaplus.dir/net/eathena/auctionhandler.cpp.obj 8d4a5d09e250e7f +116061 117323 7731133205486707 src/CMakeFiles/manaplus.dir/net/eathena/bankrecv.cpp.obj ace2c4156cd75c14 +113317 116772 7731133178060529 src/CMakeFiles/manaplus.dir/listeners/skillwarplistener.cpp.obj 8de2ad12e05f7df3 +116551 117758 7731133210382340 src/CMakeFiles/manaplus.dir/net/eathena/battlegroundhandler.cpp.obj c123b880e862929c +116651 118256 7731133211390906 src/CMakeFiles/manaplus.dir/net/eathena/cashshophandler.cpp.obj 80b1f34f12be1f8c +116416 118794 7731133209037748 src/CMakeFiles/manaplus.dir/net/eathena/battlegroundrecv.cpp.obj fed612b433f2d267 +117043 118582 7731133215310407 src/CMakeFiles/manaplus.dir/net/eathena/buysellhandler.cpp.obj abd3101e84a838bf +118582 119483 7731133230703865 src/CMakeFiles/manaplus.dir/net/eathena/elementalhandler.cpp.obj c23be14ffd1e9e8a +116725 119044 7731133212126530 src/CMakeFiles/manaplus.dir/net/eathena/beinghandler.cpp.obj 2fdd052a39656e9c +116772 119379 7731133212593295 src/CMakeFiles/manaplus.dir/net/eathena/buyingstorehandler.cpp.obj 592df41d7faaa086 +117758 120746 7731133222465404 src/CMakeFiles/manaplus.dir/net/eathena/clanhandler.cpp.obj afb8a009eb0b8243 +117450 120727 7731133219379455 src/CMakeFiles/manaplus.dir/net/eathena/chathandler.cpp.obj bfa856d14d1d2dc9 +116675 120903 7731133211620911 src/CMakeFiles/manaplus.dir/net/eathena/cashshoprecv.cpp.obj 6eec724cb04cbc77 +117244 121144 7731133217309976 src/CMakeFiles/manaplus.dir/net/eathena/buysellrecv.cpp.obj 5d702c5cac95039 +118795 120884 7731133232837260 src/CMakeFiles/manaplus.dir/net/eathena/elementalrecv.cpp.obj c18b03142d818024 +119483 120896 7731133239706915 src/CMakeFiles/manaplus.dir/net/eathena/friendshandler.cpp.obj 8fc1265944937cc2 +119045 121104 7731133235331795 src/CMakeFiles/manaplus.dir/net/eathena/familyhandler.cpp.obj 2829201d1e65d560 +120727 122149 7731133252150019 src/CMakeFiles/manaplus.dir/net/eathena/friendsrecv.cpp.obj 4e368a7103d82140 +116978 121850 7731133214656205 src/CMakeFiles/manaplus.dir/net/eathena/buyingstorerecv.cpp.obj e5b5080e82c0a4f0 +118256 122061 7731133227445139 src/CMakeFiles/manaplus.dir/net/eathena/clanrecv.cpp.obj ab14ba7cefc5ffb6 +117289 121872 7731133217777392 src/CMakeFiles/manaplus.dir/net/eathena/charserverhandler.cpp.obj ffed7358d1d68333 +117492 122246 7731133219807543 src/CMakeFiles/manaplus.dir/net/eathena/chatrecv.cpp.obj 674a387112b97b04 +116715 122215 7731133212026525 src/CMakeFiles/manaplus.dir/net/eathena/beingrecv.cpp.obj 6542d3b44abad7b0 +117324 122482 7731133218122376 src/CMakeFiles/manaplus.dir/net/eathena/charserverrecv.cpp.obj d6b588d356cf2f28 +120903 122630 7731133253912861 src/CMakeFiles/manaplus.dir/net/eathena/generalrecv.cpp.obj e8488b41ca9f2876 +122215 123236 7731133267028546 src/CMakeFiles/manaplus.dir/net/eathena/itemhandler.cpp.obj ee5686ca21142f8d +121850 123821 7731133263379725 src/CMakeFiles/manaplus.dir/net/eathena/homunculushandler.cpp.obj 604a7cc5aa5169a4 +119379 123088 7731133238678868 src/CMakeFiles/manaplus.dir/net/eathena/familyrecv.cpp.obj 368eb47879443978 +122061 123963 7731133265494362 src/CMakeFiles/manaplus.dir/net/eathena/inventoryhandler.cpp.obj faebeda85f56f9dd +122246 123996 7731133267356330 src/CMakeFiles/manaplus.dir/net/eathena/itemrecv.cpp.obj 4178a23b5e06c54d +120746 124503 7731133252340033 src/CMakeFiles/manaplus.dir/net/eathena/gamehandler.cpp.obj ba4eb280651cbe05 +121104 123940 7731133255921608 src/CMakeFiles/manaplus.dir/net/eathena/guildhandler.cpp.obj 650fadc5d8a03da8 +120884 124855 7731133253722853 src/CMakeFiles/manaplus.dir/net/eathena/gamerecv.cpp.obj 6c42c162f19adf82 +123821 125792 7731133283097930 src/CMakeFiles/manaplus.dir/net/eathena/mailhandler.cpp.obj ed9d8f5745dd5aaf +120896 126036 7731133253832827 src/CMakeFiles/manaplus.dir/net/eathena/generalhandler.cpp.obj 5e6d1ba204febc18 +123236 126305 7731133277244480 src/CMakeFiles/manaplus.dir/net/eathena/mail2handler.cpp.obj 5ec9cf7ff61bec59 +123963 125955 7731133284521022 src/CMakeFiles/manaplus.dir/net/eathena/maphandler.cpp.obj 4fad9adf3728801a +121872 126523 7731133263598717 src/CMakeFiles/manaplus.dir/net/eathena/homunculusrecv.cpp.obj 1eddbbbffe2ba888 +123996 125780 7731133284843560 src/CMakeFiles/manaplus.dir/net/eathena/maprecv.cpp.obj 9a81e67e8cf1ebc7 +122482 126190 7731133269705495 src/CMakeFiles/manaplus.dir/net/eathena/loginhandler.cpp.obj 36cb4de9c3404368 +124503 126671 7731133289914503 src/CMakeFiles/manaplus.dir/net/eathena/markethandler.cpp.obj c76fd755fdf450d1 +121144 126298 7731133256316168 src/CMakeFiles/manaplus.dir/net/eathena/guildrecv.cpp.obj a61082c210a80341 +122149 127101 7731133266372954 src/CMakeFiles/manaplus.dir/net/eathena/inventoryrecv.cpp.obj 4c21c255c77ea260 +125956 126904 7731133304447399 src/CMakeFiles/manaplus.dir/net/eathena/menu.cpp.obj 27be444e9f7efc4b +123940 127341 7731133284285460 src/CMakeFiles/manaplus.dir/net/eathena/mailrecv.cpp.obj 56a389a14fc8e428 +122630 126722 7731133271186167 src/CMakeFiles/manaplus.dir/net/eathena/loginrecv.cpp.obj 187bdd95e92d9c79 +125780 127132 7731133302675880 src/CMakeFiles/manaplus.dir/net/eathena/barterhandler.cpp.obj f4dc31dbdaa63b0a +123088 127205 7731133275764544 src/CMakeFiles/manaplus.dir/net/eathena/mail2recv.cpp.obj 5ae05a68cef86fda +125792 126840 7731133302798143 src/CMakeFiles/manaplus.dir/net/eathena/barterrecv.cpp.obj d7c52d7fc1d07880 +126036 127415 7731133305240344 src/CMakeFiles/manaplus.dir/net/eathena/mercenaryhandler.cpp.obj c86900bb45b49fb3 +126298 127789 7731133307856226 src/CMakeFiles/manaplus.dir/net/eathena/messagein.cpp.obj 75675d2edb8a3a7e +127415 128232 7731133319031074 src/CMakeFiles/manaplus.dir/net/eathena/protocolout.cpp.obj a7ae3717ce8de08f +124856 128080 7731133293430195 src/CMakeFiles/manaplus.dir/net/eathena/marketrecv.cpp.obj 3627a1dbb1b122a5 +127790 129576 7731133322778106 src/CMakeFiles/manaplus.dir/net/eathena/questhandler.cpp.obj f9a23f79dcfe9e74 +128232 129868 7731133327216492 src/CMakeFiles/manaplus.dir/net/eathena/refinehandler.cpp.obj 7ed4f79979181d39 +127101 129909 7731133315898457 src/CMakeFiles/manaplus.dir/net/eathena/pethandler.cpp.obj 85b60be7844556b1 +129576 131240 7731133340639286 src/CMakeFiles/manaplus.dir/net/eathena/refinerecv.cpp.obj 49ef3047bba378a4 +126840 130173 7731133313279782 src/CMakeFiles/manaplus.dir/net/eathena/partyhandler.cpp.obj a489e5079c2c8124 +126305 129858 7731133307926074 src/CMakeFiles/manaplus.dir/net/eathena/messageout.cpp.obj 803fb3a58dc4fbc0 +126523 131076 7731133310123288 src/CMakeFiles/manaplus.dir/net/eathena/network.cpp.obj add0803189d0ab19 +126190 130353 7731133306786384 src/CMakeFiles/manaplus.dir/net/eathena/mercenaryrecv.cpp.obj e5d0fca4c453d26a +127132 130982 7731133316211638 src/CMakeFiles/manaplus.dir/net/eathena/petrecv.cpp.obj 6dd0038efc3beea +130354 131546 7731133348411153 src/CMakeFiles/manaplus.dir/net/eathena/serverfeatures.cpp.obj ee1df7971639ca7a +129858 131005 7731133343459251 src/CMakeFiles/manaplus.dir/net/eathena/roulettehandler.cpp.obj c3f6f2bb6643b150 +129868 131405 7731133343561222 src/CMakeFiles/manaplus.dir/net/eathena/rouletterecv.cpp.obj a7ed49071409015d +126671 131915 7731133311591626 src/CMakeFiles/manaplus.dir/net/eathena/npchandler.cpp.obj 4ba5b293328a2bc +130982 132165 7731133354706362 src/CMakeFiles/manaplus.dir/net/eathena/skillhandler.cpp.obj 637b2c52836c151e +129909 131453 7731133343973062 src/CMakeFiles/manaplus.dir/net/eathena/searchstorehandler.cpp.obj 48688340028391c0 +130173 131681 7731133346612064 src/CMakeFiles/manaplus.dir/net/eathena/searchstorerecv.cpp.obj bef3da46429de9c5 +126904 131832 7731133313925896 src/CMakeFiles/manaplus.dir/net/eathena/partyrecv.cpp.obj b27384e3b65389dc +126722 131808 7731133312100295 src/CMakeFiles/manaplus.dir/net/eathena/npcrecv.cpp.obj f5f34369eb137855 +127206 131854 7731133316940000 src/CMakeFiles/manaplus.dir/net/eathena/playerhandler.cpp.obj 4d96ca885c746eb0 +127342 132411 7731133318297544 src/CMakeFiles/manaplus.dir/net/eathena/playerrecv.cpp.obj ea20ec15d798c49 +128081 131727 7731133325690437 src/CMakeFiles/manaplus.dir/net/eathena/questrecv.cpp.obj 38ebc8fb969db79 +131854 132071 7731133363423578 src/CMakeFiles/manaplus.dir/manaplus.rc.obj 19e57b7ce7283415 +131076 133190 7731133355636996 src/CMakeFiles/manaplus.dir/net/eathena/tradehandler.cpp.obj 8b92fffa9e9867cc +131682 132804 7731133361711907 src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol_zero.cpp.obj 44f57b492140f7cd +131453 132952 7731133359410551 src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol_main.cpp.obj 3926a1f3882decad +131547 133072 7731133360339261 src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol_re.cpp.obj fb6bbdab3770eda3 +132412 133839 7731133369004395 src/CMakeFiles/manaplus.dir/net/tmwa/adminrecv.cpp.obj 5618e76630453d41 +132805 133746 7731133372931785 src/CMakeFiles/manaplus.dir/net/tmwa/achievementhandler.cpp.obj c66d178478aa6b2d +132166 133949 7731133366533538 src/CMakeFiles/manaplus.dir/net/tmwa/adminhandler.cpp.obj 5f0fa6ac2b24772b +132952 133806 7731133374397801 src/CMakeFiles/manaplus.dir/net/tmwa/attendancehandler.cpp.obj ad18d4d183eba5b3 +131727 134361 7731133362161844 src/CMakeFiles/manaplus.dir/net/eathena/vendinghandler.cpp.obj 9a808066b8fdb410 +131005 136132 7731133354929326 src/CMakeFiles/manaplus.dir/net/eathena/skillrecv.cpp.obj 50c50702d33cffe2 +131405 135234 7731133358935463 src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol.cpp.obj 6619750881fa9cf8 +133190 135289 7731133376790544 src/CMakeFiles/manaplus.dir/net/tmwa/beinghandler.cpp.obj d4bcde1cb656b5d4 +131240 134994 7731133357284121 src/CMakeFiles/manaplus.dir/net/eathena/traderecv.cpp.obj 8156f107d31250 +132071 135962 7731133365605765 src/CMakeFiles/manaplus.dir/gui/windows/shopselldialog.cpp.obj 1fd44a0270193328 +131916 136122 7731133364040001 src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/emulateguildtab.cpp.obj 1e0420e8d6aa95a9 +135235 136797 7731133397237755 src/CMakeFiles/manaplus.dir/net/tmwa/clanhandler.cpp.obj a697625b51d7493a +131808 136790 7731133362967063 src/CMakeFiles/manaplus.dir/net/eathena/vendingrecv.cpp.obj 61d92dc9b1933470 +133746 137564 7731133382339710 src/CMakeFiles/manaplus.dir/net/tmwa/buysellhandler.cpp.obj 8b3a61e16319a7ff +134361 137446 7731133388490735 src/CMakeFiles/manaplus.dir/net/tmwa/chathandler.cpp.obj 70a513176f1fe350 +131832 137180 7731133363200489 src/CMakeFiles/manaplus.dir/fs/specialfolder.cpp.obj 4979e52ec690ef46 +133806 137572 7731133382937044 src/CMakeFiles/manaplus.dir/net/tmwa/buysellrecv.cpp.obj d7558fd15b2d5197 +133072 137935 7731133375599631 src/CMakeFiles/manaplus.dir/net/tmwa/beingrecv.cpp.obj 721b6221540700fe +137565 138576 7731133420522551 src/CMakeFiles/manaplus.dir/net/tmwa/itemhandler.cpp.obj 20fc293e7c18837f +136132 138351 7731133406202333 src/CMakeFiles/manaplus.dir/net/tmwa/generalrecv.cpp.obj 45aa66b68b7f3f39 +133839 138160 7731133383269774 src/CMakeFiles/manaplus.dir/net/tmwa/charserverhandler.cpp.obj 75c92a3e9b3837f +136791 138770 7731133412784122 src/CMakeFiles/manaplus.dir/net/tmwa/guildhandler.cpp.obj 61e296cc15682fe1 +135290 139092 7731133397771186 src/CMakeFiles/manaplus.dir/net/tmwa/gamehandler.cpp.obj bcf379132079cb92 +137572 139235 7731133420602565 src/CMakeFiles/manaplus.dir/net/tmwa/itemrecv.cpp.obj 5f79e6e95a164432 +137180 138763 7731133416681639 src/CMakeFiles/manaplus.dir/net/tmwa/inventoryhandler.cpp.obj 7108a8eb22a8392f +135962 139598 7731133404494307 src/CMakeFiles/manaplus.dir/net/tmwa/gamerecv.cpp.obj 56f0787e894afb49 +134994 139411 7731133394816284 src/CMakeFiles/manaplus.dir/net/tmwa/chatrecv.cpp.obj a2d5391ab5a4ec0d +133949 139134 7731133384366858 src/CMakeFiles/manaplus.dir/net/tmwa/charserverrecv.cpp.obj 60d256cfd8c961af +138351 139630 7731133428391075 src/CMakeFiles/manaplus.dir/net/tmwa/messagein.cpp.obj 9c3e044d225f5799 +136123 140515 7731133406099865 src/CMakeFiles/manaplus.dir/net/tmwa/generalhandler.cpp.obj d0ba4b4577c4455d +140419 141304 7731133449061431 src/CMakeFiles/manaplus.dir/net/tmwa/questhandler.cpp.obj 27e1442fff2d5961 +139630 140475 7731133441177349 src/CMakeFiles/manaplus.dir/net/tmwa/protocolout.cpp.obj 59585affb24cf10b +139236 141826 7731133437236997 src/CMakeFiles/manaplus.dir/net/tmwa/pethandler.cpp.obj 75292476449038fd +137447 141771 7731133419340063 src/CMakeFiles/manaplus.dir/net/tmwa/inventoryrecv.cpp.obj 1f89ece4c078e90b +138160 140418 7731133426474686 src/CMakeFiles/manaplus.dir/net/tmwa/loginrecv.cpp.obj 2659f049a1a818a3 +139092 142438 7731133435796915 src/CMakeFiles/manaplus.dir/net/tmwa/partyhandler.cpp.obj 90be9dd91068ffee +137935 141297 7731133424231166 src/CMakeFiles/manaplus.dir/net/tmwa/loginhandler.cpp.obj 95a4f4bdd19b922a +136798 141311 7731133412855873 src/CMakeFiles/manaplus.dir/net/tmwa/guildmanager.cpp.obj b193668d7cd591c9 +138576 142049 7731133430658923 src/CMakeFiles/manaplus.dir/net/tmwa/messageout.cpp.obj 57d52167e1aa03d0 +140515 141834 7731133450025395 src/CMakeFiles/manaplus.dir/net/tmwa/serverfeatures.cpp.obj 83412ab55a694fa1 +138763 142502 7731133432507256 src/CMakeFiles/manaplus.dir/net/tmwa/network.cpp.obj a5c5a8bce77d87ad +141297 142813 7731133457850284 src/CMakeFiles/manaplus.dir/net/tmwa/skillhandler.cpp.obj 83ed1bddbd7f9ed7 +142049 143453 7731133465366914 src/CMakeFiles/manaplus.dir/net/tmwa/bankhandler.cpp.obj 19a542455e55c100 +141834 143471 7731133463220018 src/CMakeFiles/manaplus.dir/net/tmwa/auctionhandler.cpp.obj 3766a9334a0e3654 +139134 143735 7731133436217511 src/CMakeFiles/manaplus.dir/net/tmwa/partyrecv.cpp.obj 5c2f0e8d9b665f6 +139598 143961 7731133440865456 src/CMakeFiles/manaplus.dir/net/tmwa/playerrecv.cpp.obj 5b604d9e34ea68aa +142503 143866 7731133469908225 src/CMakeFiles/manaplus.dir/net/tmwa/buyingstorehandler.cpp.obj a8769c4db9aa66ed +138771 143482 7731133432588800 src/CMakeFiles/manaplus.dir/net/tmwa/npchandler.cpp.obj 66045d252ed53fe9 +139411 143885 7731133438995302 src/CMakeFiles/manaplus.dir/net/tmwa/playerhandler.cpp.obj 24be5254a18ded99 +142438 143742 7731133469265275 src/CMakeFiles/manaplus.dir/net/tmwa/battlegroundhandler.cpp.obj 9c4348e47e49bd8a +142814 143788 7731133473016005 src/CMakeFiles/manaplus.dir/net/tmwa/cashshophandler.cpp.obj e4753959f29a9401 +141312 143679 7731133457990278 src/CMakeFiles/manaplus.dir/net/tmwa/tradehandler.cpp.obj f9e520b30814e993 +143453 144310 7731133479411610 src/CMakeFiles/manaplus.dir/net/tmwa/elementalhandler.cpp.obj fced9579e2194863 +143471 144334 7731133479591651 src/CMakeFiles/manaplus.dir/net/tmwa/familyhandler.cpp.obj 5958763c0ca6d483 +143483 145047 7731133479703615 src/CMakeFiles/manaplus.dir/net/tmwa/friendshandler.cpp.obj b0a94dbae3080dc +143788 145168 7731133482750045 src/CMakeFiles/manaplus.dir/net/tmwa/maphandler.cpp.obj 51de9c3663dfdf69 +143679 145076 7731133481668944 src/CMakeFiles/manaplus.dir/net/tmwa/homunculushandler.cpp.obj 2a1bbc44b3c298fe +140475 143856 7731133449628966 src/CMakeFiles/manaplus.dir/net/tmwa/questrecv.cpp.obj eb1d1509d5dbe42d +143735 145301 7731133482223609 src/CMakeFiles/manaplus.dir/net/tmwa/mailhandler.cpp.obj 3e862da925ab1f2 +143867 145176 7731133483557636 src/CMakeFiles/manaplus.dir/net/tmwa/barterhandler.cpp.obj 839faab28b1a1aaf +143857 145281 7731133483447644 src/CMakeFiles/manaplus.dir/net/tmwa/markethandler.cpp.obj cffb0f6072a4af0b +141827 145264 7731133463148216 src/CMakeFiles/manaplus.dir/net/tmwa/updateprotocol.cpp.obj 41d5ac9792f56478 +143742 145310 7731133482293618 src/CMakeFiles/manaplus.dir/net/tmwa/mail2handler.cpp.obj b6c50270232db542 +144310 145148 7731133487989493 src/CMakeFiles/manaplus.dir/net/tmwa/roulettehandler.cpp.obj f293af53829a7612 +143885 145348 7731133483737630 src/CMakeFiles/manaplus.dir/net/tmwa/mercenaryhandler.cpp.obj 8e0c5e001680a49d +143962 145401 7731133484502415 src/CMakeFiles/manaplus.dir/net/tmwa/refinehandler.cpp.obj b53333e6b782e339 +141305 145289 7731133457920297 src/CMakeFiles/manaplus.dir/net/tmwa/skillrecv.cpp.obj 366c964eaf31f262 +141771 145531 7731133462593908 src/CMakeFiles/manaplus.dir/net/tmwa/traderecv.cpp.obj 63c32622016c5256 +144334 145274 7731133488224970 src/CMakeFiles/manaplus.dir/net/tmwa/searchstorehandler.cpp.obj da46e16f948fc34a +145048 146302 7731133495357940 src/CMakeFiles/manaplus.dir/net/tmwa/vendinghandler.cpp.obj 2906b9daaa2857a0 +145076 146601 7731133495644588 src/CMakeFiles/manaplus.dir/net/ea/adminhandler.cpp.obj 539566a2cbc71eb +145176 146664 7731133496643978 src/CMakeFiles/manaplus.dir/net/ea/buysellhandler.cpp.obj 36e666764f7ed7bf +145310 146750 7731133498000076 src/CMakeFiles/manaplus.dir/net/ea/gamehandler.cpp.obj f8e72a9073733323 +145290 147049 7731133497780020 src/CMakeFiles/manaplus.dir/net/ea/chathandler.cpp.obj ad44d15106d73241 +146303 147162 7731133507901869 src/CMakeFiles/manaplus.dir/net/ea/itemhandler.cpp.obj 63e8c31b2ab6d752 +145169 147314 7731133496567267 src/CMakeFiles/manaplus.dir/net/ea/beinghandler.cpp.obj 42ebf9d4a2b1983e +145274 148666 7731133497610032 src/CMakeFiles/manaplus.dir/net/ea/charserverhandler.cpp.obj 301a137018fa4ba8 +147314 148833 7731133518026167 src/CMakeFiles/manaplus.dir/net/ea/npchandler.cpp.obj 7942c6c07e24b878 +146664 149409 7731133511528929 src/CMakeFiles/manaplus.dir/net/ea/loginhandler.cpp.obj e5b19244eec270f +145266 148841 7731133497540028 src/CMakeFiles/manaplus.dir/net/ea/buysellrecv.cpp.obj 2044a2b13771030d +146601 149059 7731133510896394 src/CMakeFiles/manaplus.dir/net/ea/itemrecv.cpp.obj b24726a2e763e5ca +145349 148876 7731133498369520 src/CMakeFiles/manaplus.dir/net/ea/gamerecv.cpp.obj f3f3df2761321b44 +145402 149023 7731133498913370 src/CMakeFiles/manaplus.dir/net/ea/inventoryhandler.cpp.obj 1cd7465d445d211d +147162 149340 7731133516505613 src/CMakeFiles/manaplus.dir/net/ea/maprecv.cpp.obj c4ee498292824062 +145281 149826 7731133497690015 src/CMakeFiles/manaplus.dir/net/ea/charserverrecv.cpp.obj b1b22d4fd557455 +145302 149803 7731133497900015 src/CMakeFiles/manaplus.dir/net/ea/chatrecv.cpp.obj a095bc150945b64c +145148 149878 7731133496363850 src/CMakeFiles/manaplus.dir/net/ea/beingrecv.cpp.obj b6b63e5233f06573 +149059 149966 7731133535474871 src/CMakeFiles/manaplus.dir/net/ea/skillhandler.cpp.obj 9b024249f8fd9df2 +158092 158297 7731107765569781 po/cs.gmo b46145526f69f654 +158092 158297 7731107765569781 C:/msys64/home/laptop/verse/out/build/default/po/cs.gmo b46145526f69f654 +158044 158312 7731107765709790 po/ca.gmo 776ff22190dc8b39 +158044 158312 7731107765709790 C:/msys64/home/laptop/verse/out/build/default/po/ca.gmo 776ff22190dc8b39 +158298 158632 7731107768633638 po/eo.gmo 111bd4462b466e91 +158298 158632 7731107768633638 C:/msys64/home/laptop/verse/out/build/default/po/eo.gmo 111bd4462b466e91 +145531 149994 7731133500195858 src/CMakeFiles/manaplus.dir/net/ea/inventoryrecv.cpp.obj 9a077cbc0b4aeed7 +158260 158657 7731107767528290 po/de.gmo db25f9fb089ce0bc +158260 158657 7731107767528290 C:/msys64/home/laptop/verse/out/build/default/po/de.gmo db25f9fb089ce0bc +146750 150263 7731133512377917 src/CMakeFiles/manaplus.dir/net/ea/loginrecv.cpp.obj d2bee260bfedc3e +158312 158744 7731107769619558 po/es.gmo 78b0ce41f7f6300a +158312 158744 7731107769619558 C:/msys64/home/laptop/verse/out/build/default/po/es.gmo 78b0ce41f7f6300a +158658 158865 7731107771167020 po/id.gmo e26d9adee298be86 +158658 158865 7731107771167020 C:/msys64/home/laptop/verse/out/build/default/po/id.gmo e26d9adee298be86 +158633 158877 7731107771187015 po/fi.gmo 52a21233b6d6b36b +158633 158877 7731107771187015 C:/msys64/home/laptop/verse/out/build/default/po/fi.gmo 52a21233b6d6b36b +158646 158891 7731107771075438 po/fr.gmo badec2df800fe1d4 +158646 158891 7731107771075438 C:/msys64/home/laptop/verse/out/build/default/po/fr.gmo badec2df800fe1d4 +158731 158942 7731107771956204 po/it.gmo e12b591d50740c9d +158731 158942 7731107771956204 C:/msys64/home/laptop/verse/out/build/default/po/it.gmo e12b591d50740c9d +147050 150740 7731133515375209 src/CMakeFiles/manaplus.dir/net/ea/network.cpp.obj 72e0ec8e0b9bb99a +158744 159088 7731107772698016 po/ja.gmo 1fea10396ddbff91 +158744 159088 7731107772698016 C:/msys64/home/laptop/verse/out/build/default/po/ja.gmo 1fea10396ddbff91 +158865 159153 7731107774140110 po/nl.gmo 85db409062baeeab +158865 159153 7731107774140110 C:/msys64/home/laptop/verse/out/build/default/po/nl.gmo 85db409062baeeab +158878 159165 7731107774085920 po/nl_BE.gmo fc5c71c396e7f81b +158878 159165 7731107774085920 C:/msys64/home/laptop/verse/out/build/default/po/nl_BE.gmo fc5c71c396e7f81b +148833 150801 7731133533214552 src/CMakeFiles/manaplus.dir/net/ea/partyhandler.cpp.obj 257049b0fe4e0232 +158943 159256 7731107774943925 po/pt.gmo 88cd180605096a88 +158943 159256 7731107774943925 C:/msys64/home/laptop/verse/out/build/default/po/pt.gmo 88cd180605096a88 +158891 159268 7731107774883935 po/pl.gmo 2808dabcd57f2611 +158891 159268 7731107774883935 C:/msys64/home/laptop/verse/out/build/default/po/pl.gmo 2808dabcd57f2611 +159074 159328 7731107775368821 po/pt_BR.gmo 983a4c5d956379dc +159074 159328 7731107775368821 C:/msys64/home/laptop/verse/out/build/default/po/pt_BR.gmo 983a4c5d956379dc +159089 159370 7731107775774154 po/ru.gmo b3ab91275dc6d4e4 +159089 159370 7731107775774154 C:/msys64/home/laptop/verse/out/build/default/po/ru.gmo b3ab91275dc6d4e4 +159166 159392 7731107776112778 po/sv.gmo b12dd3265146a357 +159166 159392 7731107776112778 C:/msys64/home/laptop/verse/out/build/default/po/sv.gmo b12dd3265146a357 +159153 159399 7731107776665624 po/sr.gmo dc8f1c8b75bab68e +159153 159399 7731107776665624 C:/msys64/home/laptop/verse/out/build/default/po/sr.gmo dc8f1c8b75bab68e +159256 159511 7731107777421092 po/tr.gmo f3a490ef4f867669 +159256 159511 7731107777421092 C:/msys64/home/laptop/verse/out/build/default/po/tr.gmo f3a490ef4f867669 +159244 159519 7731107777684424 po/sv_SE.gmo 6d6caf47aa8c9ed0 +159244 159519 7731107777684424 C:/msys64/home/laptop/verse/out/build/default/po/sv_SE.gmo 6d6caf47aa8c9ed0 +159268 159519 7731107777750378 po/uk.gmo 821b32c808810d80 +159268 159519 7731107777750378 C:/msys64/home/laptop/verse/out/build/default/po/uk.gmo 821b32c808810d80 +148877 150805 7731133533640440 src/CMakeFiles/manaplus.dir/net/ea/playerhandler.cpp.obj f327151d87f26cfd +159328 159541 7731107777944655 po/zh_CN.gmo f87f730720dd5348 +159328 159541 7731107777944655 C:/msys64/home/laptop/verse/out/build/default/po/zh_CN.gmo f87f730720dd5348 +159371 159552 7731107778196459 po/zh_HK.gmo 973d151d560e6ba6 +159371 159552 7731107778196459 C:/msys64/home/laptop/verse/out/build/default/po/zh_HK.gmo 973d151d560e6ba6 +149340 151866 7731133538278313 src/CMakeFiles/manaplus.dir/net/ea/skillrecv.cpp.obj dc5c305b87098170 +149409 152164 7731133538971752 src/CMakeFiles/manaplus.dir/net/ea/tradehandler.cpp.obj 57b1e8d6ec778b53 +148666 152076 7731133531536995 src/CMakeFiles/manaplus.dir/net/ea/npcrecv.cpp.obj e40bf9acacb5abe0 +149023 152232 7731133535111232 src/CMakeFiles/manaplus.dir/net/ea/playerrecv.cpp.obj b13522aa659365e5 +149804 152419 7731133542921783 src/CMakeFiles/manaplus.dir/net/ea/traderecv.cpp.obj 29b107d8fe7cb02b +148841 152295 7731133533286384 src/CMakeFiles/manaplus.dir/net/ea/partyrecv.cpp.obj 36dbe731f6b7968c +152419 154439 7731133569062642 src/manaplus.exe 6437b056cfdce383 diff --git a/out/build/default/build.ninja b/out/build/default/build.ninja new file mode 100644 index 000000000..9191cb22d --- /dev/null +++ b/out/build/default/build.ninja @@ -0,0 +1,9337 @@ +# CMAKE generated file: DO NOT EDIT!
+# Generated by "Ninja" Generator, CMake Version 4.0
+
+# This file contains all the build statements describing the
+# compilation DAG.
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+#
+# Which is the root file.
+# =============================================================================
+
+# =============================================================================
+# Project: MANAPLUS
+# Configurations:
+# =============================================================================
+
+#############################################
+# Minimal version of Ninja required by this file
+
+ninja_required_version = 1.5
+
+# =============================================================================
+# Include auxiliary files.
+
+
+#############################################
+# Include rules file.
+
+include CMakeFiles/rules.ninja
+
+# =============================================================================
+
+#############################################
+# Logical path to working directory; prefix for absolute paths.
+
+cmake_ninja_workdir = C$:/msys64/home/laptop/verse/out/build/default/
+
+#############################################
+# Utility command for package
+
+build CMakeFiles/package.util: CUSTOM_COMMAND all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build package: phony CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build package_source: phony CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build edit_cache: phony CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build rebuild_cache: phony CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build CMakeFiles/install.util: CUSTOM_COMMAND all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build install: phony CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build CMakeFiles/install/local.util: CUSTOM_COMMAND all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build install/local: phony CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build CMakeFiles/install/strip.util: CUSTOM_COMMAND all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build install/strip: phony CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/CMakeFiles/package.util: CUSTOM_COMMAND data/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/package: phony data/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/package_source: phony data/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/edit_cache: phony data/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/rebuild_cache: phony data/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/CMakeFiles/install.util: CUSTOM_COMMAND data/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/install: phony data/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/CMakeFiles/install/local.util: CUSTOM_COMMAND data/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/install/local: phony data/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/install/strip: phony data/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/fonts/CMakeFiles/package.util: CUSTOM_COMMAND data/fonts/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/fonts/package: phony data/fonts/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/fonts/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/fonts/package_source: phony data/fonts/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/fonts/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\fonts && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/fonts/edit_cache: phony data/fonts/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/fonts/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\fonts && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/fonts/rebuild_cache: phony data/fonts/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/fonts/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/fonts/CMakeFiles/install.util: CUSTOM_COMMAND data/fonts/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\fonts && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/fonts/install: phony data/fonts/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/fonts/CMakeFiles/install/local.util: CUSTOM_COMMAND data/fonts/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\fonts && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/fonts/install/local: phony data/fonts/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/fonts/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/fonts/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\fonts && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/fonts/install/strip: phony data/fonts/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/fonts/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/fonts/src/CMakeFiles/package.util: CUSTOM_COMMAND data/fonts/src/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/fonts/src/package: phony data/fonts/src/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/fonts/src/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/fonts/src/package_source: phony data/fonts/src/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/fonts/src/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\fonts\src && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/fonts/src/edit_cache: phony data/fonts/src/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/fonts/src/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\fonts\src && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/fonts/src/rebuild_cache: phony data/fonts/src/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/fonts/src/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/fonts/src/CMakeFiles/install.util: CUSTOM_COMMAND data/fonts/src/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\fonts\src && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/fonts/src/install: phony data/fonts/src/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/fonts/src/CMakeFiles/install/local.util: CUSTOM_COMMAND data/fonts/src/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\fonts\src && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/fonts/src/install/local: phony data/fonts/src/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/fonts/src/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/fonts/src/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\fonts\src && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/fonts/src/install/strip: phony data/fonts/src/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/graphics/CMakeFiles/package.util: CUSTOM_COMMAND data/graphics/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/graphics/package: phony data/graphics/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/graphics/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/graphics/package_source: phony data/graphics/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/graphics/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/graphics/edit_cache: phony data/graphics/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/graphics/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/graphics/rebuild_cache: phony data/graphics/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/graphics/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/graphics/CMakeFiles/install.util: CUSTOM_COMMAND data/graphics/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/graphics/install: phony data/graphics/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/graphics/CMakeFiles/install/local.util: CUSTOM_COMMAND data/graphics/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/graphics/install/local: phony data/graphics/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/graphics/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/graphics/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/graphics/install/strip: phony data/graphics/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/graphics/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/graphics/badges/CMakeFiles/package.util: CUSTOM_COMMAND data/graphics/badges/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/graphics/badges/package: phony data/graphics/badges/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/graphics/badges/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/graphics/badges/package_source: phony data/graphics/badges/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/graphics/badges/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\badges && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/graphics/badges/edit_cache: phony data/graphics/badges/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/graphics/badges/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\badges && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/graphics/badges/rebuild_cache: phony data/graphics/badges/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/graphics/badges/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/graphics/badges/CMakeFiles/install.util: CUSTOM_COMMAND data/graphics/badges/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\badges && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/graphics/badges/install: phony data/graphics/badges/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/graphics/badges/CMakeFiles/install/local.util: CUSTOM_COMMAND data/graphics/badges/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\badges && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/graphics/badges/install/local: phony data/graphics/badges/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/graphics/badges/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/graphics/badges/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\badges && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/graphics/badges/install/strip: phony data/graphics/badges/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/graphics/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/graphics/flags/CMakeFiles/package.util: CUSTOM_COMMAND data/graphics/flags/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/graphics/flags/package: phony data/graphics/flags/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/graphics/flags/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/graphics/flags/package_source: phony data/graphics/flags/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/graphics/flags/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\flags && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/graphics/flags/edit_cache: phony data/graphics/flags/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/graphics/flags/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\flags && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/graphics/flags/rebuild_cache: phony data/graphics/flags/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/graphics/flags/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/graphics/flags/CMakeFiles/install.util: CUSTOM_COMMAND data/graphics/flags/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\flags && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/graphics/flags/install: phony data/graphics/flags/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/graphics/flags/CMakeFiles/install/local.util: CUSTOM_COMMAND data/graphics/flags/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\flags && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/graphics/flags/install/local: phony data/graphics/flags/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/graphics/flags/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/graphics/flags/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\flags && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/graphics/flags/install/strip: phony data/graphics/flags/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/graphics/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/graphics/gui/CMakeFiles/package.util: CUSTOM_COMMAND data/graphics/gui/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/graphics/gui/package: phony data/graphics/gui/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/graphics/gui/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/graphics/gui/package_source: phony data/graphics/gui/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/graphics/gui/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\gui && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/graphics/gui/edit_cache: phony data/graphics/gui/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/graphics/gui/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\gui && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/graphics/gui/rebuild_cache: phony data/graphics/gui/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/graphics/gui/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/graphics/gui/CMakeFiles/install.util: CUSTOM_COMMAND data/graphics/gui/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\gui && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/graphics/gui/install: phony data/graphics/gui/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/graphics/gui/CMakeFiles/install/local.util: CUSTOM_COMMAND data/graphics/gui/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\gui && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/graphics/gui/install/local: phony data/graphics/gui/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/graphics/gui/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/graphics/gui/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\gui && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/graphics/gui/install/strip: phony data/graphics/gui/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/graphics/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/graphics/images/CMakeFiles/package.util: CUSTOM_COMMAND data/graphics/images/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/graphics/images/package: phony data/graphics/images/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/graphics/images/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/graphics/images/package_source: phony data/graphics/images/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/graphics/images/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\images && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/graphics/images/edit_cache: phony data/graphics/images/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/graphics/images/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\images && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/graphics/images/rebuild_cache: phony data/graphics/images/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/graphics/images/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/graphics/images/CMakeFiles/install.util: CUSTOM_COMMAND data/graphics/images/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\images && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/graphics/images/install: phony data/graphics/images/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/graphics/images/CMakeFiles/install/local.util: CUSTOM_COMMAND data/graphics/images/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\images && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/graphics/images/install/local: phony data/graphics/images/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/graphics/images/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/graphics/images/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\images && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/graphics/images/install/strip: phony data/graphics/images/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/graphics/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/graphics/shaders/CMakeFiles/package.util: CUSTOM_COMMAND data/graphics/shaders/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/graphics/shaders/package: phony data/graphics/shaders/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/graphics/shaders/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/graphics/shaders/package_source: phony data/graphics/shaders/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/graphics/shaders/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\shaders && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/graphics/shaders/edit_cache: phony data/graphics/shaders/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/graphics/shaders/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\shaders && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/graphics/shaders/rebuild_cache: phony data/graphics/shaders/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/graphics/shaders/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/graphics/shaders/CMakeFiles/install.util: CUSTOM_COMMAND data/graphics/shaders/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\shaders && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/graphics/shaders/install: phony data/graphics/shaders/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/graphics/shaders/CMakeFiles/install/local.util: CUSTOM_COMMAND data/graphics/shaders/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\shaders && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/graphics/shaders/install/local: phony data/graphics/shaders/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/graphics/shaders/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/graphics/shaders/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\shaders && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/graphics/shaders/install/strip: phony data/graphics/shaders/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/graphics/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/graphics/sprites/CMakeFiles/package.util: CUSTOM_COMMAND data/graphics/sprites/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/graphics/sprites/package: phony data/graphics/sprites/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/graphics/sprites/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/graphics/sprites/package_source: phony data/graphics/sprites/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/graphics/sprites/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\sprites && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/graphics/sprites/edit_cache: phony data/graphics/sprites/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/graphics/sprites/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\sprites && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/graphics/sprites/rebuild_cache: phony data/graphics/sprites/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/graphics/sprites/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/graphics/sprites/CMakeFiles/install.util: CUSTOM_COMMAND data/graphics/sprites/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\sprites && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/graphics/sprites/install: phony data/graphics/sprites/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/graphics/sprites/CMakeFiles/install/local.util: CUSTOM_COMMAND data/graphics/sprites/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\sprites && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/graphics/sprites/install/local: phony data/graphics/sprites/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/graphics/sprites/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/graphics/sprites/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\graphics\sprites && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/graphics/sprites/install/strip: phony data/graphics/sprites/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/help/CMakeFiles/package.util: CUSTOM_COMMAND data/help/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/help/package: phony data/help/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/help/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/help/package_source: phony data/help/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/help/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\help && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/help/edit_cache: phony data/help/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/help/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\help && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/help/rebuild_cache: phony data/help/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/help/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/help/CMakeFiles/install.util: CUSTOM_COMMAND data/help/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\help && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/help/install: phony data/help/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/help/CMakeFiles/install/local.util: CUSTOM_COMMAND data/help/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\help && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/help/install/local: phony data/help/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/help/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/help/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\help && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/help/install/strip: phony data/help/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/help/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/help/tips/CMakeFiles/package.util: CUSTOM_COMMAND data/help/tips/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/help/tips/package: phony data/help/tips/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/help/tips/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/help/tips/package_source: phony data/help/tips/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/help/tips/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\help\tips && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/help/tips/edit_cache: phony data/help/tips/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/help/tips/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\help\tips && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/help/tips/rebuild_cache: phony data/help/tips/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/help/tips/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/help/tips/CMakeFiles/install.util: CUSTOM_COMMAND data/help/tips/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\help\tips && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/help/tips/install: phony data/help/tips/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/help/tips/CMakeFiles/install/local.util: CUSTOM_COMMAND data/help/tips/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\help\tips && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/help/tips/install/local: phony data/help/tips/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/help/tips/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/help/tips/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\help\tips && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/help/tips/install/strip: phony data/help/tips/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/icons/CMakeFiles/package.util: CUSTOM_COMMAND data/icons/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/icons/package: phony data/icons/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/icons/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/icons/package_source: phony data/icons/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/icons/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\icons && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/icons/edit_cache: phony data/icons/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/icons/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\icons && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/icons/rebuild_cache: phony data/icons/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/icons/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/icons/CMakeFiles/install.util: CUSTOM_COMMAND data/icons/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\icons && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/icons/install: phony data/icons/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/icons/CMakeFiles/install/local.util: CUSTOM_COMMAND data/icons/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\icons && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/icons/install/local: phony data/icons/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/icons/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/icons/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\icons && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/icons/install/strip: phony data/icons/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/music/CMakeFiles/package.util: CUSTOM_COMMAND data/music/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/music/package: phony data/music/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/music/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/music/package_source: phony data/music/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/music/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\music && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/music/edit_cache: phony data/music/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/music/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\music && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/music/rebuild_cache: phony data/music/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/music/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/music/CMakeFiles/install.util: CUSTOM_COMMAND data/music/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\music && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/music/install: phony data/music/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/music/CMakeFiles/install/local.util: CUSTOM_COMMAND data/music/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\music && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/music/install/local: phony data/music/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/music/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/music/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\music && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/music/install/strip: phony data/music/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/perserver/CMakeFiles/package.util: CUSTOM_COMMAND data/perserver/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/perserver/package: phony data/perserver/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/perserver/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/perserver/package_source: phony data/perserver/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/perserver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\perserver && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/perserver/edit_cache: phony data/perserver/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/perserver/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\perserver && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/perserver/rebuild_cache: phony data/perserver/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/perserver/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/perserver/CMakeFiles/install.util: CUSTOM_COMMAND data/perserver/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\perserver && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/perserver/install: phony data/perserver/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/perserver/CMakeFiles/install/local.util: CUSTOM_COMMAND data/perserver/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\perserver && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/perserver/install/local: phony data/perserver/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/perserver/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/perserver/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\perserver && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/perserver/install/strip: phony data/perserver/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/perserver/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/perserver/default/CMakeFiles/package.util: CUSTOM_COMMAND data/perserver/default/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/perserver/default/package: phony data/perserver/default/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/perserver/default/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/perserver/default/package_source: phony data/perserver/default/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/perserver/default/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\perserver\default && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/perserver/default/edit_cache: phony data/perserver/default/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/perserver/default/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\perserver\default && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/perserver/default/rebuild_cache: phony data/perserver/default/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/perserver/default/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/perserver/default/CMakeFiles/install.util: CUSTOM_COMMAND data/perserver/default/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\perserver\default && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/perserver/default/install: phony data/perserver/default/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/perserver/default/CMakeFiles/install/local.util: CUSTOM_COMMAND data/perserver/default/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\perserver\default && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/perserver/default/install/local: phony data/perserver/default/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/perserver/default/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/perserver/default/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\perserver\default && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/perserver/default/install/strip: phony data/perserver/default/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/sfx/CMakeFiles/package.util: CUSTOM_COMMAND data/sfx/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/sfx/package: phony data/sfx/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/sfx/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/sfx/package_source: phony data/sfx/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/sfx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\sfx && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/sfx/edit_cache: phony data/sfx/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/sfx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\sfx && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/sfx/rebuild_cache: phony data/sfx/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/sfx/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/sfx/CMakeFiles/install.util: CUSTOM_COMMAND data/sfx/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\sfx && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/sfx/install: phony data/sfx/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/sfx/CMakeFiles/install/local.util: CUSTOM_COMMAND data/sfx/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\sfx && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/sfx/install/local: phony data/sfx/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/sfx/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/sfx/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\sfx && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/sfx/install/strip: phony data/sfx/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/sfx/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/sfx/system/CMakeFiles/package.util: CUSTOM_COMMAND data/sfx/system/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/sfx/system/package: phony data/sfx/system/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/sfx/system/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/sfx/system/package_source: phony data/sfx/system/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/sfx/system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\sfx\system && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/sfx/system/edit_cache: phony data/sfx/system/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/sfx/system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\sfx\system && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/sfx/system/rebuild_cache: phony data/sfx/system/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/sfx/system/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/sfx/system/CMakeFiles/install.util: CUSTOM_COMMAND data/sfx/system/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\sfx\system && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/sfx/system/install: phony data/sfx/system/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/sfx/system/CMakeFiles/install/local.util: CUSTOM_COMMAND data/sfx/system/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\sfx\system && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/sfx/system/install/local: phony data/sfx/system/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/sfx/system/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/sfx/system/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\sfx\system && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/sfx/system/install/strip: phony data/sfx/system/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/test/CMakeFiles/package.util: CUSTOM_COMMAND data/test/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/test/package: phony data/test/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/test/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/test/package_source: phony data/test/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/test/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\test && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/test/edit_cache: phony data/test/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/test/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\test && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/test/rebuild_cache: phony data/test/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/test/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/test/CMakeFiles/install.util: CUSTOM_COMMAND data/test/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\test && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/test/install: phony data/test/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/test/CMakeFiles/install/local.util: CUSTOM_COMMAND data/test/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\test && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/test/install/local: phony data/test/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/test/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/test/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\test && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/test/install/strip: phony data/test/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/test/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/test/dir2/CMakeFiles/package.util: CUSTOM_COMMAND data/test/dir2/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/test/dir2/package: phony data/test/dir2/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/test/dir2/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/test/dir2/package_source: phony data/test/dir2/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/test/dir2/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\test\dir2 && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/test/dir2/edit_cache: phony data/test/dir2/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/test/dir2/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\test\dir2 && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/test/dir2/rebuild_cache: phony data/test/dir2/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/test/dir2/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/test/dir2/CMakeFiles/install.util: CUSTOM_COMMAND data/test/dir2/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\test\dir2 && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/test/dir2/install: phony data/test/dir2/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/test/dir2/CMakeFiles/install/local.util: CUSTOM_COMMAND data/test/dir2/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\test\dir2 && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/test/dir2/install/local: phony data/test/dir2/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/test/dir2/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/test/dir2/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\test\dir2 && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/test/dir2/install/strip: phony data/test/dir2/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/package: phony data/themes/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/package_source: phony data/themes/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/edit_cache: phony data/themes/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/rebuild_cache: phony data/themes/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/install: phony data/themes/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/install/local: phony data/themes/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/install/strip: phony data/themes/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/themes/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/blacknblack/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/blacknblack/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/blacknblack/package: phony data/themes/blacknblack/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/blacknblack/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/blacknblack/package_source: phony data/themes/blacknblack/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/blacknblack/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\blacknblack && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/blacknblack/edit_cache: phony data/themes/blacknblack/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/blacknblack/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\blacknblack && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/blacknblack/rebuild_cache: phony data/themes/blacknblack/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/blacknblack/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/blacknblack/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/blacknblack/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\blacknblack && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/blacknblack/install: phony data/themes/blacknblack/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/blacknblack/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/blacknblack/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\blacknblack && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/blacknblack/install/local: phony data/themes/blacknblack/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/blacknblack/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/blacknblack/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\blacknblack && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/blacknblack/install/strip: phony data/themes/blacknblack/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/themes/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/blackwood/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/blackwood/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/blackwood/package: phony data/themes/blackwood/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/blackwood/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/blackwood/package_source: phony data/themes/blackwood/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/blackwood/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\blackwood && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/blackwood/edit_cache: phony data/themes/blackwood/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/blackwood/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\blackwood && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/blackwood/rebuild_cache: phony data/themes/blackwood/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/blackwood/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/blackwood/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/blackwood/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\blackwood && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/blackwood/install: phony data/themes/blackwood/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/blackwood/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/blackwood/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\blackwood && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/blackwood/install/local: phony data/themes/blackwood/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/blackwood/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/blackwood/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\blackwood && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/blackwood/install/strip: phony data/themes/blackwood/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/themes/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/classic/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/classic/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/classic/package: phony data/themes/classic/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/classic/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/classic/package_source: phony data/themes/classic/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/classic/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\classic && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/classic/edit_cache: phony data/themes/classic/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/classic/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\classic && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/classic/rebuild_cache: phony data/themes/classic/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/classic/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/classic/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/classic/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\classic && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/classic/install: phony data/themes/classic/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/classic/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/classic/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\classic && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/classic/install/local: phony data/themes/classic/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/classic/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/classic/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\classic && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/classic/install/strip: phony data/themes/classic/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/themes/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/enchilado/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/enchilado/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/enchilado/package: phony data/themes/enchilado/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/enchilado/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/enchilado/package_source: phony data/themes/enchilado/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/enchilado/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\enchilado && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/enchilado/edit_cache: phony data/themes/enchilado/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/enchilado/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\enchilado && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/enchilado/rebuild_cache: phony data/themes/enchilado/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/enchilado/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/enchilado/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/enchilado/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\enchilado && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/enchilado/install: phony data/themes/enchilado/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/enchilado/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/enchilado/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\enchilado && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/enchilado/install/local: phony data/themes/enchilado/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/enchilado/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/enchilado/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\enchilado && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/enchilado/install/strip: phony data/themes/enchilado/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/themes/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/golden-delicious/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/golden-delicious/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/golden-delicious/package: phony data/themes/golden-delicious/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/golden-delicious/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/golden-delicious/package_source: phony data/themes/golden-delicious/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/golden-delicious/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\golden-delicious && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/golden-delicious/edit_cache: phony data/themes/golden-delicious/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/golden-delicious/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\golden-delicious && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/golden-delicious/rebuild_cache: phony data/themes/golden-delicious/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/golden-delicious/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/golden-delicious/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/golden-delicious/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\golden-delicious && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/golden-delicious/install: phony data/themes/golden-delicious/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/golden-delicious/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/golden-delicious/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\golden-delicious && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/golden-delicious/install/local: phony data/themes/golden-delicious/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/golden-delicious/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/golden-delicious/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\golden-delicious && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/golden-delicious/install/strip: phony data/themes/golden-delicious/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/themes/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/jewelry/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/jewelry/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry/package: phony data/themes/jewelry/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/jewelry/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry/package_source: phony data/themes/jewelry/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/jewelry/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\jewelry && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/jewelry/edit_cache: phony data/themes/jewelry/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/jewelry/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\jewelry && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry/rebuild_cache: phony data/themes/jewelry/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/jewelry/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/jewelry/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/jewelry/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\jewelry && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry/install: phony data/themes/jewelry/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/jewelry/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/jewelry/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\jewelry && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry/install/local: phony data/themes/jewelry/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/jewelry/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/jewelry/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\jewelry && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry/install/strip: phony data/themes/jewelry/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/themes/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/jewelry-simple/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/jewelry-simple/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry-simple/package: phony data/themes/jewelry-simple/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/jewelry-simple/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry-simple/package_source: phony data/themes/jewelry-simple/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/jewelry-simple/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\jewelry-simple && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/jewelry-simple/edit_cache: phony data/themes/jewelry-simple/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/jewelry-simple/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\jewelry-simple && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry-simple/rebuild_cache: phony data/themes/jewelry-simple/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/jewelry-simple/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/jewelry-simple/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/jewelry-simple/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\jewelry-simple && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry-simple/install: phony data/themes/jewelry-simple/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/jewelry-simple/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/jewelry-simple/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\jewelry-simple && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry-simple/install/local: phony data/themes/jewelry-simple/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/jewelry-simple/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/jewelry-simple/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\jewelry-simple && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/jewelry-simple/install/strip: phony data/themes/jewelry-simple/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/themes/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/mana/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/mana/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/mana/package: phony data/themes/mana/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/mana/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/mana/package_source: phony data/themes/mana/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/mana/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\mana && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/mana/edit_cache: phony data/themes/mana/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/mana/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\mana && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/mana/rebuild_cache: phony data/themes/mana/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/mana/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/mana/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/mana/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\mana && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/mana/install: phony data/themes/mana/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/mana/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/mana/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\mana && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/mana/install/local: phony data/themes/mana/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/mana/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/mana/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\mana && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/mana/install/strip: phony data/themes/mana/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/themes/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/pink/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/pink/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/pink/package: phony data/themes/pink/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/pink/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/pink/package_source: phony data/themes/pink/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/pink/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\pink && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/pink/edit_cache: phony data/themes/pink/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/pink/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\pink && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/pink/rebuild_cache: phony data/themes/pink/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/pink/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/pink/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/pink/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\pink && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/pink/install: phony data/themes/pink/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/pink/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/pink/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\pink && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/pink/install/local: phony data/themes/pink/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/pink/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/pink/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\pink && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/pink/install/strip: phony data/themes/pink/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/themes/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/unity/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/unity/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/unity/package: phony data/themes/unity/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/unity/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/unity/package_source: phony data/themes/unity/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/unity/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\unity && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/unity/edit_cache: phony data/themes/unity/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/unity/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\unity && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/unity/rebuild_cache: phony data/themes/unity/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/unity/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/unity/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/unity/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\unity && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/unity/install: phony data/themes/unity/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/unity/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/unity/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\unity && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/unity/install/local: phony data/themes/unity/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/unity/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/unity/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\unity && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/unity/install/strip: phony data/themes/unity/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/themes/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/themes/wood/CMakeFiles/package.util: CUSTOM_COMMAND data/themes/wood/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/themes/wood/package: phony data/themes/wood/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/themes/wood/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/themes/wood/package_source: phony data/themes/wood/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/themes/wood/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\wood && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/themes/wood/edit_cache: phony data/themes/wood/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/themes/wood/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\wood && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/themes/wood/rebuild_cache: phony data/themes/wood/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/themes/wood/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/themes/wood/CMakeFiles/install.util: CUSTOM_COMMAND data/themes/wood/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\wood && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/themes/wood/install: phony data/themes/wood/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/themes/wood/CMakeFiles/install/local.util: CUSTOM_COMMAND data/themes/wood/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\wood && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/themes/wood/install/local: phony data/themes/wood/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/themes/wood/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/themes/wood/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\themes\wood && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/themes/wood/install/strip: phony data/themes/wood/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/translations/CMakeFiles/package.util: CUSTOM_COMMAND data/translations/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/translations/package: phony data/translations/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/translations/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/translations/package_source: phony data/translations/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/translations/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\translations && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/translations/edit_cache: phony data/translations/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/translations/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\translations && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/translations/rebuild_cache: phony data/translations/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/translations/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/translations/CMakeFiles/install.util: CUSTOM_COMMAND data/translations/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\translations && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/translations/install: phony data/translations/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/translations/CMakeFiles/install/local.util: CUSTOM_COMMAND data/translations/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\translations && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/translations/install/local: phony data/translations/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/translations/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/translations/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\translations && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/translations/install/strip: phony data/translations/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/data/translations/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for package
+
+build data/translations/test/CMakeFiles/package.util: CUSTOM_COMMAND data/translations/test/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build data/translations/test/package: phony data/translations/test/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build data/translations/test/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build data/translations/test/package_source: phony data/translations/test/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build data/translations/test/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\translations\test && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build data/translations/test/edit_cache: phony data/translations/test/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build data/translations/test/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\translations\test && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build data/translations/test/rebuild_cache: phony data/translations/test/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build data/translations/test/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build data/translations/test/CMakeFiles/install.util: CUSTOM_COMMAND data/translations/test/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\translations\test && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build data/translations/test/install: phony data/translations/test/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build data/translations/test/CMakeFiles/install/local.util: CUSTOM_COMMAND data/translations/test/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\translations\test && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build data/translations/test/install/local: phony data/translations/test/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build data/translations/test/CMakeFiles/install/strip.util: CUSTOM_COMMAND data/translations/test/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\data\translations\test && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build data/translations/test/install/strip: phony data/translations/test/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/CMakeLists.txt
+# =============================================================================
+
+# =============================================================================
+# Object build statements for EXECUTABLE target manaplus
+
+
+#############################################
+# Order-only phony target for manaplus
+
+build cmake_object_order_depends_target_manaplus: phony || .
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/avatarlistbox.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/avatarlistbox.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\avatarlistbox.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/battletab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/chat/battletab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat\battletab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/channeltab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/chat/channeltab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat\channeltab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/browserbox.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/browserbox.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\browserbox.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/button.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/button.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\button.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/characterdisplay.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/characterdisplay.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\characterdisplay.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/characterviewnormal.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/characterviewnormal.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\characterviewnormal.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/characterviewsmall.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/characterviewsmall.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\characterviewsmall.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/attrs/attrdisplay.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/attrs/attrdisplay.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\attrs\attrdisplay.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\attrs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/attrs/changedisplay.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/attrs/changedisplay.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\attrs\changedisplay.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\attrs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/attrs/derdisplay.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/attrs/derdisplay.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\attrs\derdisplay.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\attrs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/clanwindowtabs.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/clanwindowtabs.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\clanwindowtabs.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/mapdebugtab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/mapdebugtab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\mapdebugtab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/netdebugtab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/netdebugtab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\netdebugtab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/targetdebugtab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/targetdebugtab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\targetdebugtab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/chattab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/chat/chattab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat\chattab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/clantab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/chat/clantab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat\clantab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/checkbox.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/checkbox.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\checkbox.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/models/colormodel.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/models/colormodel.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\models\colormodel.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\models
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/colorpage.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/colorpage.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\colorpage.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/container.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/container.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\container.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/containerplacer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/containerplacer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\containerplacer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/desktop.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/desktop.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\desktop.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/dropdown.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/dropdown.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\dropdown.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/emoteshortcutcontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/emoteshortcutcontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\emoteshortcutcontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/extendedlistbox.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/extendedlistbox.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\extendedlistbox.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/models/extendednamesmodel.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/models/extendednamesmodel.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\models\extendednamesmodel.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\models
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/flowcontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/flowcontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\flowcontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/gmtab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/chat/gmtab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat\gmtab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/guildtab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/chat/guildtab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat\guildtab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/partytab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/chat/partytab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat\partytab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/horizontcontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/horizontcontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\horizontcontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/icon.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/icon.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\icon.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/inttextfield.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/inttextfield.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\inttextfield.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/itemcontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/itemcontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\itemcontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/itemlinkhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/itemlinkhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\itemlinkhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/virtshortcutcontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/virtshortcutcontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\virtshortcutcontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/emotepage.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/emotepage.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\emotepage.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/itemshortcutcontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/itemshortcutcontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\itemshortcutcontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/spellshortcutcontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/spellshortcutcontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\spellshortcutcontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/staticbrowserbox.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/staticbrowserbox.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\staticbrowserbox.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/statspage.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/statspage.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\statspage.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/statspagebasic.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/statspagebasic.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\statspagebasic.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/label.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/label.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\label.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/langtab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/chat/langtab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat\langtab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/layout.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/layout.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\layout.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/layoutarray.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/layoutarray.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\layoutarray.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/layoutcell.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/layoutcell.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\layoutcell.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/layouthelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/layouthelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\layouthelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/linepart.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/linepart.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\linepart.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/listbox.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/listbox.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\listbox.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/models/modelistmodel.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/models/modelistmodel.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\models\modelistmodel.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\models
+
+build src/CMakeFiles/manaplus.dir/gui/models/namesmodel.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/models/namesmodel.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\models\namesmodel.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\models
+
+build src/CMakeFiles/manaplus.dir/gui/models/playertablemodel.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/models/playertablemodel.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\models\playertablemodel.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\models
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/passwordfield.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/passwordfield.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\passwordfield.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/pincode.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/pincode.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\pincode.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/playerbox.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/playerbox.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\playerbox.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/popup.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/popup.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\popup.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/popuplist.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/popuplist.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\popuplist.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/progressbar.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/progressbar.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\progressbar.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/progressindicator.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/progressindicator.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\progressindicator.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/radiobutton.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/radiobutton.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\radiobutton.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/radiogroup.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/radiogroup.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\radiogroup.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/scrollarea.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/scrollarea.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\scrollarea.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/setupbuttonitem.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/setupbuttonitem.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\setupbuttonitem.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/setupitem.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/setupitem.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\setupitem.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/setupquickitem.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/setupquickitem.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\setupquickitem.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setuptab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setuptab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setuptab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setuptabscroll.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setuptabscroll.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setuptabscroll.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/setuptouchitem.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/setuptouchitem.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\setuptouchitem.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/models/shopitems.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/models/shopitems.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\models\shopitems.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\models
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/shoplistbox.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/shoplistbox.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\shoplistbox.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/shortcutcontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/shortcutcontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\shortcutcontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/resources/skill/skilldata.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/skill/skilldata.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\skill\skilldata.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\skill
+
+build src/CMakeFiles/manaplus.dir/resources/skill/skillinfo.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/skill/skillinfo.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\skill\skillinfo.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\skill
+
+build src/CMakeFiles/manaplus.dir/gui/models/skillmodel.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/models/skillmodel.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\models\skillmodel.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\models
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/slider.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/slider.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\slider.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/sliderlist.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/sliderlist.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\sliderlist.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/statdebugtab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/statdebugtab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\statdebugtab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/tab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/tab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\tab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabbedarea.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabbedarea.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabbedarea.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/guitable.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/guitable.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\guitable.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/models/tablemodel.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/models/tablemodel.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\models\tablemodel.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\models
+
+build src/CMakeFiles/manaplus.dir/gui/models/touchactionmodel.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/models/touchactionmodel.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\models\touchactionmodel.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\models
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabstrip.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabstrip.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabstrip.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/textbox.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/textbox.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\textbox.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/textfield.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/textfield.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\textfield.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/textpreview.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/textpreview.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\textpreview.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/tradetab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/chat/tradetab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat\tradetab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/vertcontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/vertcontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\vertcontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/whispertab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/chat/whispertab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat\whispertab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/widgetgroup.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/widgetgroup.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\widgetgroup.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/window.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/window.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\window.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/windowcontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/windowcontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\windowcontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/popups/beingpopup.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/popups/beingpopup.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\popups\beingpopup.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\popups
+
+build src/CMakeFiles/manaplus.dir/gui/windows/buydialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/buydialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\buydialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/buyselldialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/buyselldialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\buyselldialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/changeemaildialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/changeemaildialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\changeemaildialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/changepassworddialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/changepassworddialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\changepassworddialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/charselectdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/charselectdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\charselectdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/charcreatedialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/charcreatedialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\charcreatedialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/chatwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/chatwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\chatwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/clanwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/clanwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\clanwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/confirmdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/confirmdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\confirmdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/connectiondialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/connectiondialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\connectiondialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/cutinwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/cutinwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\cutinwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/debugwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/debugwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\debugwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/didyouknowwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/didyouknowwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\didyouknowwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/editdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/editdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\editdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/editserverdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/editserverdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\editserverdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/emotewindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/emotewindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\emotewindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/equipmentwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/equipmentwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\equipmentwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/focushandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/focushandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\focushandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/gui/gui.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/gui.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\gui.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/gui/windows/helpwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/helpwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\helpwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/insertcarddialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/insertcarddialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\insertcarddialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/inventorywindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/inventorywindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\inventorywindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/itemamountwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/itemamountwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\itemamountwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/popups/itempopup.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/popups/itempopup.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\popups\itempopup.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\popups
+
+build src/CMakeFiles/manaplus.dir/gui/popups/spellpopup.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/popups/spellpopup.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\popups\spellpopup.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\popups
+
+build src/CMakeFiles/manaplus.dir/gui/popups/statuspopup.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/popups/statuspopup.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\popups\statuspopup.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\popups
+
+build src/CMakeFiles/manaplus.dir/gui/popups/textboxpopup.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/popups/textboxpopup.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\popups\textboxpopup.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\popups
+
+build src/CMakeFiles/manaplus.dir/gui/windows/killstats.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/killstats.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\killstats.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/logindialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/logindialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\logindialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/minimap.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/minimap.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\minimap.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/ministatuswindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/ministatuswindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\ministatuswindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/npcdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/npcdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\npcdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/npcselldialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/npcselldialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\npcselldialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/okdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/okdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\okdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/outfitwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/outfitwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\outfitwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/pincodedialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/pincodedialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\pincodedialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/textcommandeditor.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/textcommandeditor.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\textcommandeditor.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/palette.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/palette.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\palette.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/gui/popupmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/popupmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\popupmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/gui/popups/popupmenu.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/popups/popupmenu.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\popups\popupmenu.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\popups
+
+build src/CMakeFiles/manaplus.dir/gui/popups/skillpopup.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/popups/skillpopup.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\popups\skillpopup.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\popups
+
+build src/CMakeFiles/manaplus.dir/gui/windows/questswindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/questswindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\questswindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/quitdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/quitdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\quitdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/registerdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/registerdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\registerdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/sdlinput.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/sdlinput.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\sdlinput.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/selldialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/selldialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\selldialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/windows/serverdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/serverdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\serverdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/serverinfowindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/serverinfowindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\serverinfowindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/setupwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/setupwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\setupwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_audio.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_audio.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_audio.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_colors.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_colors.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_colors.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_joystick.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_joystick.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_joystick.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_misc.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_misc.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_misc.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_mods.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_mods.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_mods.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_theme.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_theme.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_theme.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_touch.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_touch.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_touch.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_chat.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_chat.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_chat.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_input.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_input.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_input.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_perfomance.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_perfomance.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_perfomance.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_relations.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_relations.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_relations.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_players.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_players.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_players.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_quick.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_quick.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_quick.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_video.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_video.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_video.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_visual.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/setup_visual.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\setup_visual.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs
+
+build src/CMakeFiles/manaplus.dir/gui/setupinputpages.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/setupinputpages.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\setupinputpages.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/input/pages/basic.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/pages/basic.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\pages\basic.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\pages
+
+build src/CMakeFiles/manaplus.dir/input/pages/chat.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/pages/chat.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\pages\chat.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\pages
+
+build src/CMakeFiles/manaplus.dir/input/pages/craft.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/pages/craft.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\pages\craft.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\pages
+
+build src/CMakeFiles/manaplus.dir/input/pages/emotes.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/pages/emotes.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\pages\emotes.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\pages
+
+build src/CMakeFiles/manaplus.dir/input/pages/gui.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/pages/gui.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\pages\gui.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\pages
+
+build src/CMakeFiles/manaplus.dir/input/pages/move.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/pages/move.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\pages\move.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\pages
+
+build src/CMakeFiles/manaplus.dir/input/pages/other.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/pages/other.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\pages\other.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\pages
+
+build src/CMakeFiles/manaplus.dir/input/pages/outfits.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/pages/outfits.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\pages\outfits.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\pages
+
+build src/CMakeFiles/manaplus.dir/input/pages/shortcuts.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/pages/shortcuts.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\pages\shortcuts.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\pages
+
+build src/CMakeFiles/manaplus.dir/input/pages/windows.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/pages/windows.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\pages\windows.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\pages
+
+build src/CMakeFiles/manaplus.dir/gui/fonts/font.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/fonts/font.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\fonts\font.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\fonts
+
+build src/CMakeFiles/manaplus.dir/gui/fonts/textchunk.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/fonts/textchunk.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\fonts\textchunk.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\fonts
+
+build src/CMakeFiles/manaplus.dir/gui/fonts/textchunklist.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/fonts/textchunklist.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\fonts\textchunklist.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\fonts
+
+build src/CMakeFiles/manaplus.dir/gui/fonts/textchunksmall.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/fonts/textchunksmall.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\fonts\textchunksmall.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\fonts
+
+build src/CMakeFiles/manaplus.dir/gui/windows/shopwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/shopwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\shopwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/shortcutwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/shortcutwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\shortcutwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/skilldialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/skilldialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\skilldialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/socialwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/socialwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\socialwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/popups/speechbubble.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/popups/speechbubble.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\popups\speechbubble.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\popups
+
+build src/CMakeFiles/manaplus.dir/gui/windows/statuswindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/statuswindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\statuswindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/textdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/textdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\textdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/textselectdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/textselectdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\textselectdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/popups/textpopup.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/popups/textpopup.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\popups\textpopup.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\popups
+
+build src/CMakeFiles/manaplus.dir/gui/skin.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/skin.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\skin.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/gui/theme.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/theme.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\theme.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/gui/themecolorsidoperators.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/themecolorsidoperators.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\themecolorsidoperators.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/gui/touchactiondata.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/touchactiondata.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\touchactiondata.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/gui/windows/tradewindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/tradewindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\tradewindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/updaterwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/updaterwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\updaterwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/userpalette.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/userpalette.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\userpalette.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/progs/manaverse/gui/viewport.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/progs/manaverse/gui/viewport.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\progs\manaverse\gui\viewport.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\progs\manaverse\gui
+
+build src/CMakeFiles/manaplus.dir/gui/windowmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windowmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windowmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/gui/windows/whoisonline.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/whoisonline.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\whoisonline.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windowmenu.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windowmenu.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windowmenu.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/gui/windows/worldselectdialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/worldselectdialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\worldselectdialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/net/charserverhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/charserverhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\charserverhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net
+
+build src/CMakeFiles/manaplus.dir/net/download.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/download.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\download.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net
+
+build src/CMakeFiles/manaplus.dir/net/ipc.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ipc.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ipc.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net
+
+build src/CMakeFiles/manaplus.dir/net/messagein.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/messagein.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\messagein.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net
+
+build src/CMakeFiles/manaplus.dir/net/messageout.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/messageout.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\messageout.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net
+
+build src/CMakeFiles/manaplus.dir/net/net.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/net.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\net.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net
+
+build src/CMakeFiles/manaplus.dir/net/sdltcpnet.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/sdltcpnet.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\sdltcpnet.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net
+
+build src/CMakeFiles/manaplus.dir/net/updatetypeoperators.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/updatetypeoperators.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\updatetypeoperators.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net
+
+build src/CMakeFiles/manaplus.dir/net/useragent.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/useragent.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\useragent.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net
+
+build src/CMakeFiles/manaplus.dir/net/packetcounters.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/packetcounters.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\packetcounters.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net
+
+build src/CMakeFiles/manaplus.dir/net/packetlimiter.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/packetlimiter.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\packetlimiter.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net
+
+build src/CMakeFiles/manaplus.dir/resources/action.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/action.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\action.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/ambientlayer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/ambientlayer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\ambientlayer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/animation/animation.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/animation/animation.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\animation\animation.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\animation
+
+build src/CMakeFiles/manaplus.dir/resources/atlas/atlasmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/atlas/atlasmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\atlas\atlasmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\atlas
+
+build src/CMakeFiles/manaplus.dir/resources/atlas/atlasresource.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/atlas/atlasresource.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\atlas\atlasresource.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\atlas
+
+build src/CMakeFiles/manaplus.dir/resources/db/avatardb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/avatardb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\avatardb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/badgesdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/badgesdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\badgesdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/beingcommon.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/beingcommon.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\beingcommon.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/beinginfo.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/beinginfo.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\beinginfo.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/beingslot.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/beingslot.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\beingslot.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/chatobject.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/chatobject.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\chatobject.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/db/chardb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/chardb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\chardb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/clandb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/clandb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\clandb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/colordb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/colordb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\colordb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/commandsdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/commandsdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\commandsdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/cursors.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/cursors.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\cursors.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/dbmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/dbmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\dbmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/delayedmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/delayedmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\delayedmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/db/deaddb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/deaddb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\deaddb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/elementaldb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/elementaldb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\elementaldb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/dye/dye.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/dye/dye.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\dye\dye.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\dye
+
+build src/CMakeFiles/manaplus.dir/resources/dye/dyepalette.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/dye/dyepalette.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\dye\dyepalette.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\dye
+
+build src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replaceacolor.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/dye/dyepalette_replaceacolor.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\dye\dyepalette_replaceacolor.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\dye
+
+build src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replaceaoglcolor.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/dye/dyepalette_replaceaoglcolor.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\dye\dyepalette_replaceaoglcolor.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\dye
+
+build src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replacescolor.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/dye/dyepalette_replacescolor.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\dye\dyepalette_replacescolor.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\dye
+
+build src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replacesoglcolor.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/dye/dyepalette_replacesoglcolor.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\dye\dyepalette_replacesoglcolor.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\dye
+
+build src/CMakeFiles/manaplus.dir/resources/db/emotedb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/emotedb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\emotedb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/groupdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/groupdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\groupdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/homunculusdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/homunculusdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\homunculusdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/horsedb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/horsedb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\horsedb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/groupinfo.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/groupinfo.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\groupinfo.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/image/image.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/image/image.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\image\image.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\image
+
+build src/CMakeFiles/manaplus.dir/resources/imagehelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/imagehelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\imagehelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/imageset.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/imageset.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\imageset.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/db/itemdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/itemdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\itemdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/itemfielddb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/itemfielddb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\itemfielddb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/itemoptiondb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/itemoptiondb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\itemoptiondb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/languagedb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/languagedb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\languagedb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/iteminfo.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/iteminfo.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\iteminfo.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/db/mapdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/mapdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\mapdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/mercenarydb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/mercenarydb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\mercenarydb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/moddb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/moddb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\moddb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/mapreader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/mapreader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\mapreader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/memorycounter.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/memorycounter.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\memorycounter.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/memorymanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/memorymanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\memorymanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/mobileopenglscreenshothelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/mobileopenglscreenshothelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\mobileopenglscreenshothelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/modinfo.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/modinfo.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\modinfo.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/db/monsterdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/monsterdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\monsterdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/networkdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/networkdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\networkdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/npcdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/npcdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\npcdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/npcdialogdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/npcdialogdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\npcdialogdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/openglimagehelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/openglimagehelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\openglimagehelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/openglscreenshothelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/openglscreenshothelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\openglscreenshothelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/db/palettedb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/palettedb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\palettedb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/petdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/petdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\petdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/questdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/questdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\questdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/skillunitdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/skillunitdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\skillunitdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/resource.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/resource.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\resource.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/atlasloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/atlasloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\atlasloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/emptyatlasloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/emptyatlasloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\emptyatlasloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/imageloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/imageloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\imageloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/imagesetloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/imagesetloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\imagesetloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/musicloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/musicloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\musicloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/rescaledloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/rescaledloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\rescaledloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/shaderloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/shaderloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\shaderloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/shaderprogramloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/shaderprogramloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\shaderprogramloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/soundloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/soundloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\soundloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/spritedefloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/spritedefloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\spritedefloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/subimageloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/subimageloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\subimageloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/subimagesetloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/subimagesetloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\subimagesetloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/walklayerloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/walklayerloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\walklayerloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/loaders/xmlloader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/loaders/xmlloader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\loaders\xmlloader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\loaders
+
+build src/CMakeFiles/manaplus.dir/resources/resourcemanager/resourcemanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/resourcemanager/resourcemanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\resourcemanager\resourcemanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\resourcemanager
+
+build src/CMakeFiles/manaplus.dir/resources/safeopenglimagehelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/safeopenglimagehelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\safeopenglimagehelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/sdl2imagehelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/sdl2imagehelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\sdl2imagehelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/sdl2softwareimagehelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/sdl2softwareimagehelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\sdl2softwareimagehelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/sdl2softwarescreenshothelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/sdl2softwarescreenshothelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\sdl2softwarescreenshothelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/sdlgfxblitfunc.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/sdlgfxblitfunc.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\sdlgfxblitfunc.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/sdlimagehelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/sdlimagehelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\sdlimagehelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/sdlmusic.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/sdlmusic.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\sdlmusic.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/sdlscreenshothelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/sdlscreenshothelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\sdlscreenshothelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/db/sounddb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/sounddb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\sounddb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/statdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/statdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\statdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/statuseffectdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/statuseffectdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\statuseffectdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/textdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/textdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\textdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/unitsdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/unitsdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\unitsdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/db/weaponsdb.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/db/weaponsdb.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\db\weaponsdb.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\db
+
+build src/CMakeFiles/manaplus.dir/resources/soundeffect.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/soundeffect.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\soundeffect.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/sprite/spritedef.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/sprite/spritedef.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\sprite\spritedef.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\sprite
+
+build src/CMakeFiles/manaplus.dir/resources/image/subimage.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/image/subimage.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\image\subimage.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\image
+
+build src/CMakeFiles/manaplus.dir/resources/surfaceimagehelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/surfaceimagehelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\surfaceimagehelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/wallpaper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/wallpaper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\wallpaper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/utils/translation/podict.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/translation/podict.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\translation\podict.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils\translation
+
+build src/CMakeFiles/manaplus.dir/utils/translation/poparser.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/translation/poparser.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\translation\poparser.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils\translation
+
+build src/CMakeFiles/manaplus.dir/utils/translation/translationmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/translation/translationmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\translation\translationmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils\translation
+
+build src/CMakeFiles/manaplus.dir/utils/base64.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/base64.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\base64.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/browserboxtools.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/browserboxtools.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\browserboxtools.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/chatutils.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/chatutils.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\chatutils.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/checkutils.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/checkutils.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\checkutils.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/copynpaste.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/copynpaste.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\copynpaste.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/cpu.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/cpu.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\cpu.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/dumplibs.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/dumplibs.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\dumplibs.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/dumpsizes.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/dumpsizes.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\dumpsizes.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/env.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/env.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\env.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/fs/files.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/files.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\files.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs
+
+build src/CMakeFiles/manaplus.dir/utils/fuzzer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/fuzzer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\fuzzer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/gettexthelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/gettexthelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\gettexthelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/gmfunctions.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/gmfunctions.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\gmfunctions.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/itemxmlutils.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/itemxmlutils.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\itemxmlutils.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/langs.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/langs.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\langs.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/parameters.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/parameters.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\parameters.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/fs/paths.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/paths.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\paths.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs
+
+build src/CMakeFiles/manaplus.dir/utils/performance.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/performance.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\performance.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/perfstat.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/perfstat.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\perfstat.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/pnglib.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/pnglib.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\pnglib.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/rwops.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/rwops.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\rwops.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/tools.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/tools.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\tools.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/list.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/list.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\list.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/fs.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/fs.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\fs.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/direntry.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/direntry.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\direntry.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/fsdir.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/fsdir.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\fsdir.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/fsdirrwops.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/fsdirrwops.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\fsdirrwops.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/fsentry.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/fsentry.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\fsentry.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/fszip.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/fszip.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\fszip.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/fsziprwops.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/fsziprwops.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\fsziprwops.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/zipentry.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/zipentry.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\zipentry.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/zipreader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/zipreader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\zipreader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/ziplocalheader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/ziplocalheader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\ziplocalheader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/utils/process.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/process.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\process.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/sdl2helper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/sdl2helper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\sdl2helper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/sdl2logger.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/sdl2logger.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\sdl2logger.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/sdl2musichelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/sdl2musichelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\sdl2musichelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/sdlcheckutils.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/sdlcheckutils.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\sdlcheckutils.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/sdlhelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/sdlhelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\sdlhelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/sdlmusichelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/sdlmusichelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\sdlmusichelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/stringutils.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/stringutils.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\stringutils.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/timer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/timer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\timer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/fs/virtfs/file.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/virtfs/file.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\virtfs\file.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs\virtfs
+
+build src/CMakeFiles/manaplus.dir/utils/naclmessages.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/naclmessages.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\naclmessages.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/fs/mkdir.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/mkdir.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\mkdir.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs
+
+build src/CMakeFiles/manaplus.dir/utils/mrand.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/mrand.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\mrand.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/xmlutils.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/xmlutils.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\xmlutils.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/utils/xml/libxml.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/xml/libxml.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\xml\libxml.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils\xml
+
+build src/CMakeFiles/manaplus.dir/test/testlauncher.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/test/testlauncher.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\test\testlauncher.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\test
+
+build src/CMakeFiles/manaplus.dir/test/testmain.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/test/testmain.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\test\testmain.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\test
+
+build src/CMakeFiles/manaplus.dir/progs/manaverse/actions/actions.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/progs/manaverse/actions/actions.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\progs\manaverse\actions\actions.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\progs\manaverse\actions
+
+build src/CMakeFiles/manaplus.dir/progs/manaverse/actions/chat.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/progs/manaverse/actions/chat.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\progs\manaverse\actions\chat.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\progs\manaverse\actions
+
+build src/CMakeFiles/manaplus.dir/progs/manaverse/actions/commands.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/progs/manaverse/actions/commands.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\progs\manaverse\actions\commands.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\progs\manaverse\actions
+
+build src/CMakeFiles/manaplus.dir/progs/manaverse/actions/move.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/progs/manaverse/actions/move.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\progs\manaverse\actions\move.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\progs\manaverse\actions
+
+build src/CMakeFiles/manaplus.dir/progs/manaverse/actions/pets.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/progs/manaverse/actions/pets.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\progs\manaverse\actions\pets.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\progs\manaverse\actions
+
+build src/CMakeFiles/manaplus.dir/progs/manaverse/actions/statusbar.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/progs/manaverse/actions/statusbar.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\progs\manaverse\actions\statusbar.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\progs\manaverse\actions
+
+build src/CMakeFiles/manaplus.dir/progs/manaverse/actions/tabs.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/progs/manaverse/actions/tabs.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\progs\manaverse\actions\tabs.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\progs\manaverse\actions
+
+build src/CMakeFiles/manaplus.dir/progs/manaverse/actions/target.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/progs/manaverse/actions/target.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\progs\manaverse\actions\target.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\progs\manaverse\actions
+
+build src/CMakeFiles/manaplus.dir/progs/manaverse/actions/windows.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/progs/manaverse/actions/windows.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\progs\manaverse\actions\windows.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\progs\manaverse\actions
+
+build src/CMakeFiles/manaplus.dir/being/actor.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/actor.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\actor.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/being/actorsprite.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/actorsprite.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\actorsprite.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/enums/being/attributesstrings.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/enums/being/attributesstrings.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\enums\being\attributesstrings.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\enums\being
+
+build src/CMakeFiles/manaplus.dir/listeners/arrowslistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/arrowslistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\arrowslistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/assertlistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/assertlistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\assertlistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/attributelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/attributelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\attributelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/awaylistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/awaylistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\awaylistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/charrenamelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/charrenamelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\charrenamelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/actormanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/actormanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\actormanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/resources/sprite/animatedsprite.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/sprite/animatedsprite.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\sprite\animatedsprite.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\sprite
+
+build src/CMakeFiles/manaplus.dir/resources/sprite/animationdelayload.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/sprite/animationdelayload.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\sprite\animationdelayload.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\sprite
+
+build src/CMakeFiles/manaplus.dir/particle/animationparticle.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/particle/animationparticle.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\particle\animationparticle.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\particle
+
+build src/CMakeFiles/manaplus.dir/avatar.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/avatar.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\avatar.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/being/being.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/being.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\being.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/being/castingeffect.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/castingeffect.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\castingeffect.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/being/localclan.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/localclan.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\localclan.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/beingequipbackend.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/beingequipbackend.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\beingequipbackend.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/spellmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/spellmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\spellmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/chatlogger.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/chatlogger.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\chatlogger.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/progs/manaverse/client.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/progs/manaverse/client.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\progs\manaverse\client.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\progs\manaverse
+
+build src/CMakeFiles/manaplus.dir/commandline.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/commandline.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\commandline.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/configmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/configmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\configmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/being/compoundsprite.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/compoundsprite.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\compoundsprite.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/being/crazymoves.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/crazymoves.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\crazymoves.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/listeners/debugmessagelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/debugmessagelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\debugmessagelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/configuration.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/configuration.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\configuration.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/defaults.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/defaults.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\defaults.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/dirs.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/dirs.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\dirs.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/effectmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/effectmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\effectmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/gui/shortcut/emoteshortcut.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/shortcut/emoteshortcut.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\shortcut\emoteshortcut.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\shortcut
+
+build src/CMakeFiles/manaplus.dir/eventsmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/eventsmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\eventsmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/being/flooritem.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/flooritem.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\flooritem.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/game.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/game.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\game.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/gamemodifiers.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gamemodifiers.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gamemodifiers.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/render/graphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/graphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\graphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/graphicsmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/graphicsmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\graphicsmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/render/vertexes/imagecollection.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/vertexes/imagecollection.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\vertexes\imagecollection.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render\vertexes
+
+build src/CMakeFiles/manaplus.dir/render/vertexes/imagevertexes.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/vertexes/imagevertexes.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\vertexes\imagevertexes.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render\vertexes
+
+build src/CMakeFiles/manaplus.dir/render/vertexes/openglgraphicsvertexes.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/vertexes/openglgraphicsvertexes.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\vertexes\openglgraphicsvertexes.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render\vertexes
+
+build src/CMakeFiles/manaplus.dir/guild.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/guild.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\guild.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/particle/imageparticle.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/particle/imageparticle.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\particle\imageparticle.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\particle
+
+build src/CMakeFiles/manaplus.dir/resources/sprite/imagesprite.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/sprite/imagesprite.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\sprite\imagesprite.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\sprite
+
+build src/CMakeFiles/manaplus.dir/resources/inventory/complexinventory.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/inventory/complexinventory.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\inventory\complexinventory.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\inventory
+
+build src/CMakeFiles/manaplus.dir/resources/inventory/inventory.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/inventory/inventory.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\inventory\inventory.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\inventory
+
+build src/CMakeFiles/manaplus.dir/resources/item/cardslist.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/item/cardslist.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\item\cardslist.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\item
+
+build src/CMakeFiles/manaplus.dir/resources/item/complexitem.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/item/complexitem.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\item\complexitem.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\item
+
+build src/CMakeFiles/manaplus.dir/resources/item/item.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/item/item.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\item\item.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\item
+
+build src/CMakeFiles/manaplus.dir/itemcolormanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/itemcolormanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\itemcolormanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/gui/shortcut/itemshortcut.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/shortcut/itemshortcut.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\shortcut\itemshortcut.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\shortcut
+
+build src/CMakeFiles/manaplus.dir/itemsoundmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/itemsoundmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\itemsoundmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/gui/shortcut/dropshortcut.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/shortcut/dropshortcut.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\shortcut\dropshortcut.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\shortcut
+
+build src/CMakeFiles/manaplus.dir/gui/shortcut/spellshortcut.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/shortcut/spellshortcut.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\shortcut\spellshortcut.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\shortcut
+
+build src/CMakeFiles/manaplus.dir/textcommand.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/textcommand.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\textcommand.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/input/inputactionoperators.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/inputactionoperators.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\inputactionoperators.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input
+
+build src/CMakeFiles/manaplus.dir/input/inputmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/inputmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\inputmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input
+
+build src/CMakeFiles/manaplus.dir/input/joystick.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/joystick.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\joystick.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input
+
+build src/CMakeFiles/manaplus.dir/input/keyboardconfig.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/keyboardconfig.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\keyboardconfig.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input
+
+build src/CMakeFiles/manaplus.dir/input/touch/multitouchmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/touch/multitouchmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\touch\multitouchmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\touch
+
+build src/CMakeFiles/manaplus.dir/being/localplayer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/localplayer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\localplayer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/logger.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/logger.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\logger.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/main.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/main.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\main.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/maingui.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/maingui.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\maingui.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/resources/map/map.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/map/map.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\map\map.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\map
+
+build src/CMakeFiles/manaplus.dir/resources/map/mapheights.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/map/mapheights.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\map\mapheights.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\map
+
+build src/CMakeFiles/manaplus.dir/resources/map/mapitem.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/map/mapitem.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\map\mapitem.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\map
+
+build src/CMakeFiles/manaplus.dir/resources/map/maplayer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/map/maplayer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\map\maplayer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\map
+
+build src/CMakeFiles/manaplus.dir/resources/map/objectslayer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/map/objectslayer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\map\objectslayer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\map
+
+build src/CMakeFiles/manaplus.dir/render/opengl/mgl.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/opengl/mgl.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\opengl\mgl.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render\opengl
+
+build src/CMakeFiles/manaplus.dir/render/opengl/mglemu.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/opengl/mglemu.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\opengl\mglemu.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render\opengl
+
+build src/CMakeFiles/manaplus.dir/render/mobileopengl2graphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/mobileopengl2graphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\mobileopengl2graphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/render/mobileopenglgraphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/mobileopenglgraphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\mobileopenglgraphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/render/modernopenglgraphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/modernopenglgraphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\modernopenglgraphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/render/nacl/naclgles.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/nacl/naclgles.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\nacl\naclgles.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render\nacl
+
+build src/CMakeFiles/manaplus.dir/mumblemanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/mumblemanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\mumblemanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/navigationmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/navigationmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\navigationmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/render/normalopenglgraphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/normalopenglgraphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\normalopenglgraphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/notifymanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/notifymanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\notifymanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/render/imagegraphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/imagegraphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\imagegraphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/render/nullopenglgraphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/nullopenglgraphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\nullopenglgraphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/render/renderers.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/renderers.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\renderers.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/particle/particle.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/particle/particle.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\particle\particle.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\particle
+
+build src/CMakeFiles/manaplus.dir/particle/particlecontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/particle/particlecontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\particle\particlecontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\particle
+
+build src/CMakeFiles/manaplus.dir/particle/particleemitter.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/particle/particleemitter.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\particle\particleemitter.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\particle
+
+build src/CMakeFiles/manaplus.dir/particle/particleengine.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/particle/particleengine.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\particle\particleengine.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\particle
+
+build src/CMakeFiles/manaplus.dir/particle/particlelist.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/particle/particlelist.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\particle\particlelist.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\particle
+
+build src/CMakeFiles/manaplus.dir/particle/particlevector.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/particle/particlevector.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\particle\particlevector.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\particle
+
+build src/CMakeFiles/manaplus.dir/party.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/party.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\party.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/pincodemanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/pincodemanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\pincodemanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/being/playerinfo.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/playerinfo.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\playerinfo.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/being/playerrelation.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/playerrelation.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\playerrelation.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/being/playerrelations.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/being/playerrelations.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\being\playerrelations.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\being
+
+build src/CMakeFiles/manaplus.dir/listeners/renamelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/renamelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\renamelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/position.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/position.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\position.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/resources/map/speciallayer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/map/speciallayer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\map\speciallayer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\map
+
+build src/CMakeFiles/manaplus.dir/resources/map/tileanimation.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/map/tileanimation.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\map\tileanimation.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\map
+
+build src/CMakeFiles/manaplus.dir/particle/rotationalparticle.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/particle/rotationalparticle.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\particle\rotationalparticle.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\particle
+
+build src/CMakeFiles/manaplus.dir/render/safeopenglgraphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/safeopenglgraphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\safeopenglgraphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/render/sdl2graphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/sdl2graphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\sdl2graphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/render/sdl2softwaregraphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/sdl2softwaregraphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\sdl2softwaregraphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/render/sdlgraphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/sdlgraphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\sdlgraphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/settings.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/settings.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\settings.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/resources/item/shopitem.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/item/shopitem.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\item\shopitem.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\item
+
+build src/CMakeFiles/manaplus.dir/gui/shortcut/shortcutbase.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/shortcut/shortcutbase.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\shortcut\shortcutbase.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\shortcut
+
+build src/CMakeFiles/manaplus.dir/resources/animation/simpleanimation.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/animation/simpleanimation.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\animation\simpleanimation.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\animation
+
+build src/CMakeFiles/manaplus.dir/soundmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/soundmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\soundmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/statuseffect.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/statuseffect.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\statuseffect.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/render/surfacegraphics.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/surfacegraphics.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\surfacegraphics.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render
+
+build src/CMakeFiles/manaplus.dir/render/shaders/shader.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/shaders/shader.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\shaders\shader.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render\shaders
+
+build src/CMakeFiles/manaplus.dir/render/shaders/shaderprogram.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/shaders/shaderprogram.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\shaders\shaderprogram.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render\shaders
+
+build src/CMakeFiles/manaplus.dir/render/shaders/shadersmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/render/shaders/shadersmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\render\shaders\shadersmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\render\shaders
+
+build src/CMakeFiles/manaplus.dir/text.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/text.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\text.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/textmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/textmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\textmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/particle/textparticle.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/particle/textparticle.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\particle\textparticle.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\particle
+
+build src/CMakeFiles/manaplus.dir/input/touch/touchactions.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/touch/touchactions.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\touch\touchactions.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\touch
+
+build src/CMakeFiles/manaplus.dir/input/touch/touchmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/touch/touchmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\touch\touchmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input\touch
+
+build src/CMakeFiles/manaplus.dir/resources/vector.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/vector.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\vector.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources
+
+build src/CMakeFiles/manaplus.dir/resources/map/walklayer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/resources/map/walklayer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\resources\map\walklayer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\resources\map
+
+build src/CMakeFiles/manaplus.dir/listeners/errorlistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/errorlistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\errorlistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/gamemodifierlistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/gamemodifierlistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\gamemodifierlistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/guitableactionlistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/guitableactionlistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\guitableactionlistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/inputactionremotelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/inputactionremotelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\inputactionremotelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/inputactionreplayconfirmlistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/inputactionreplayconfirmlistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\inputactionreplayconfirmlistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/inputactionreplaylistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/inputactionreplaylistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\inputactionreplaylistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/playerdeathlistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/playerdeathlistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\playerdeathlistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/playerlistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/playerlistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\playerlistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/statlistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/statlistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\statlistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/textskilllistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/textskilllistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\textskilllistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/tooltiplistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/tooltiplistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\tooltiplistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/updatestatuslistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/updatestatuslistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\updatestatuslistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/uploadlistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/uploadlistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\uploadlistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/utils/sdlsharedhelper.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/utils/sdlsharedhelper.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\utils\sdlsharedhelper.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\utils
+
+build src/CMakeFiles/manaplus.dir/listeners/wrongdatanoticelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/wrongdatanoticelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\wrongdatanoticelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/basiccontainer.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/basiccontainer.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\basiccontainer.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/dialogsmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/dialogsmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\dialogsmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui
+
+build src/CMakeFiles/manaplus.dir/input/key.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/input/key.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\input\key.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\input
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/widget.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/widget.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\widget.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/basiccontainer2.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/basiccontainer2.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\basiccontainer2.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets
+
+build src/CMakeFiles/manaplus.dir/gui/windows/bankwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/bankwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\bankwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/buyingstoreselldialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/buyingstoreselldialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\buyingstoreselldialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/eggselectiondialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/eggselectiondialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\eggselectiondialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/maileditwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/maileditwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\maileditwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/mailviewwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/mailviewwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\mailviewwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/gui/windows/mailwindow.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/mailwindow.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\mailwindow.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/listeners/banklistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/banklistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\banklistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/buyingstoremodelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/buyingstoremodelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\buyingstoremodelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/buyingstoreslotslistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/buyingstoreslotslistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\buyingstoreslotslistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/changepincodelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/changepincodelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\changepincodelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/newpincodelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/newpincodelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\newpincodelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/newpincoderetrylistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/newpincoderetrylistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\newpincoderetrylistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/pincodelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/pincodelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\pincodelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/shoprenamelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/shoprenamelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\shoprenamelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/skillwarplistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/skillwarplistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\skillwarplistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/vendingmodelistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/vendingmodelistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\vendingmodelistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/listeners/vendingslotslistener.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/listeners/vendingslotslistener.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\listeners\vendingslotslistener.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\listeners
+
+build src/CMakeFiles/manaplus.dir/net/eathena/achievementrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/achievementrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\achievementrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/adminrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/adminrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\adminrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/adminhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/adminhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\adminhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/achievementhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/achievementhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\achievementhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/attendancehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/attendancehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\attendancehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/attendancerecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/attendancerecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\attendancerecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/auctionrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/auctionrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\auctionrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/auctionhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/auctionhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\auctionhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/bankrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/bankrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\bankrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/bankhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/bankhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\bankhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/battlegroundrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/battlegroundrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\battlegroundrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/battlegroundhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/battlegroundhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\battlegroundhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/cashshophandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/cashshophandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\cashshophandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/cashshoprecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/cashshoprecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\cashshoprecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/beingrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/beingrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\beingrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/beinghandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/beinghandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\beinghandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/buyingstorehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/buyingstorehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\buyingstorehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/buyingstorerecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/buyingstorerecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\buyingstorerecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/buysellhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/buysellhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\buysellhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/buysellrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/buysellrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\buysellrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/charserverhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/charserverhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\charserverhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/charserverrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/charserverrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\charserverrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/chathandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/chathandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\chathandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/chatrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/chatrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\chatrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/clanhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/clanhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\clanhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/clanrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/clanrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\clanrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/elementalhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/elementalhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\elementalhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/elementalrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/elementalrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\elementalrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/familyhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/familyhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\familyhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/familyrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/familyrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\familyrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/friendshandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/friendshandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\friendshandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/friendsrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/friendsrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\friendsrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/gamehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/gamehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\gamehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/gamerecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/gamerecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\gamerecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/generalhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/generalhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\generalhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/generalrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/generalrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\generalrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/guildhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/guildhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\guildhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/guildrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/guildrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\guildrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/homunculushandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/homunculushandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\homunculushandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/homunculusrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/homunculusrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\homunculusrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/inventoryhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/inventoryhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\inventoryhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/inventoryrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/inventoryrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\inventoryrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/itemhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/itemhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\itemhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/itemrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/itemrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\itemrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/loginhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/loginhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\loginhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/loginrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/loginrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\loginrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/mail2recv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/mail2recv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\mail2recv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/mail2handler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/mail2handler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\mail2handler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/mailhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/mailhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\mailhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/mailrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/mailrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\mailrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/maphandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/maphandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\maphandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/maprecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/maprecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\maprecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/markethandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/markethandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\markethandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/marketrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/marketrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\marketrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/barterhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/barterhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\barterhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/barterrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/barterrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\barterrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/menu.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/menu.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\menu.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/mercenaryhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/mercenaryhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\mercenaryhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/mercenaryrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/mercenaryrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\mercenaryrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/messagein.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/messagein.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\messagein.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/messageout.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/messageout.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\messageout.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/network.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/network.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\network.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/npchandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/npchandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\npchandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/npcrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/npcrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\npcrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/partyhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/partyhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\partyhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/partyrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/partyrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\partyrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/pethandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/pethandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\pethandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/petrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/petrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\petrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/playerhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/playerhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\playerhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/playerrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/playerrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\playerrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/protocolout.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/protocolout.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\protocolout.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/questhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/questhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\questhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/questrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/questrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\questrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/refinehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/refinehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\refinehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/refinerecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/refinerecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\refinerecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/roulettehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/roulettehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\roulettehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/rouletterecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/rouletterecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\rouletterecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/searchstorehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/searchstorehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\searchstorehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/searchstorerecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/searchstorerecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\searchstorerecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/serverfeatures.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/serverfeatures.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\serverfeatures.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/skillhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/skillhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\skillhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/skillrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/skillrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\skillrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/tradehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/tradehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\tradehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/traderecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/traderecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\traderecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/updateprotocol.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\updateprotocol.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol_main.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/updateprotocol_main.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\updateprotocol_main.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol_re.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/updateprotocol_re.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\updateprotocol_re.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol_zero.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/updateprotocol_zero.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\updateprotocol_zero.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/vendinghandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/vendinghandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\vendinghandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/net/eathena/vendingrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/eathena/vendingrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\eathena\vendingrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\eathena
+
+build src/CMakeFiles/manaplus.dir/fs/specialfolder.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/fs/specialfolder.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\fs\specialfolder.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\fs
+
+build src/CMakeFiles/manaplus.dir/manaplus.rc.obj: RC_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/manaplus.rc || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\manaplus.rc.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -I C:/msys64/home/laptop/verse/src -I C:/msys64/ucrt64/include/SDL2 -I C:/msys64/ucrt64/include/libpng16 -I C:/msys64/ucrt64/include/rav1e -I C:/msys64/ucrt64/include/svt-av1 -I C:/msys64/ucrt64/include/webp -I C:/msys64/ucrt64/include/opus -I C:/msys64/ucrt64/include/freetype2 -I C:/msys64/ucrt64/include/harfbuzz -I C:/msys64/ucrt64/include/glib-2.0 -I C:/msys64/ucrt64/lib/glib-2.0/include -I C:/msys64/ucrt64/include/libxml2 -I C:/msys64/ucrt64/include
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir
+
+build src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/emulateguildtab.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/widgets/tabs/chat/emulateguildtab.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat\emulateguildtab.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\widgets\tabs\chat
+
+build src/CMakeFiles/manaplus.dir/gui/windows/shopselldialog.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/gui/windows/shopselldialog.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\gui\windows\shopselldialog.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\gui\windows
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/adminhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/adminhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\adminhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/adminrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/adminrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\adminrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/achievementhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/achievementhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\achievementhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/attendancehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/attendancehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\attendancehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/beingrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/beingrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\beingrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/beinghandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/beinghandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\beinghandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/buysellhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/buysellhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\buysellhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/buysellrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/buysellrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\buysellrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/charserverhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/charserverhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\charserverhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/charserverrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/charserverrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\charserverrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/chathandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/chathandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\chathandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/chatrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/chatrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\chatrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/clanhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/clanhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\clanhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/gamehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/gamehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\gamehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/gamerecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/gamerecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\gamerecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/generalhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/generalhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\generalhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/generalrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/generalrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\generalrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/guildhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/guildhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\guildhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/guildmanager.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/guildmanager.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\guildmanager.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/inventoryhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/inventoryhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\inventoryhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/inventoryrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/inventoryrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\inventoryrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/itemhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/itemhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\itemhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/itemrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/itemrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\itemrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/loginhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/loginhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\loginhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/loginrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/loginrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\loginrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/messagein.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/messagein.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\messagein.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/messageout.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/messageout.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\messageout.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/network.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/network.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\network.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/npchandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/npchandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\npchandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/partyhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/partyhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\partyhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/partyrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/partyrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\partyrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/pethandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/pethandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\pethandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/playerhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/playerhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\playerhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/playerrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/playerrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\playerrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/protocolout.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/protocolout.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\protocolout.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/questhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/questhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\questhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/questrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/questrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\questrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/serverfeatures.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/serverfeatures.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\serverfeatures.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/skillhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/skillhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\skillhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/skillrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/skillrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\skillrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/tradehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/tradehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\tradehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/traderecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/traderecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\traderecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/updateprotocol.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/updateprotocol.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\updateprotocol.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/auctionhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/auctionhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\auctionhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/bankhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/bankhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\bankhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/battlegroundhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/battlegroundhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\battlegroundhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/buyingstorehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/buyingstorehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\buyingstorehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/cashshophandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/cashshophandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\cashshophandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/elementalhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/elementalhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\elementalhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/familyhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/familyhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\familyhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/friendshandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/friendshandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\friendshandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/homunculushandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/homunculushandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\homunculushandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/mailhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/mailhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\mailhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/mail2handler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/mail2handler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\mail2handler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/maphandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/maphandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\maphandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/markethandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/markethandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\markethandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/barterhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/barterhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\barterhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/mercenaryhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/mercenaryhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\mercenaryhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/refinehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/refinehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\refinehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/roulettehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/roulettehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\roulettehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/searchstorehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/searchstorehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\searchstorehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/tmwa/vendinghandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/tmwa/vendinghandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\tmwa\vendinghandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\tmwa
+
+build src/CMakeFiles/manaplus.dir/net/ea/adminhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/adminhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\adminhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/beingrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/beingrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\beingrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/beinghandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/beinghandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\beinghandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/buysellhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/buysellhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\buysellhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/buysellrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/buysellrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\buysellrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/charserverhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/charserverhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\charserverhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/charserverrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/charserverrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\charserverrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/chathandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/chathandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\chathandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/chatrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/chatrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\chatrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/gamehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/gamehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\gamehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/gamerecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/gamerecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\gamerecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/inventoryhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/inventoryhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\inventoryhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/inventoryrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/inventoryrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\inventoryrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/itemhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/itemhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\itemhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/itemrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/itemrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\itemrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/loginhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/loginhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\loginhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/loginrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/loginrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\loginrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/network.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/network.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\network.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/maprecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/maprecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\maprecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/npchandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/npchandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\npchandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/npcrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/npcrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\npcrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/partyhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/partyhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\partyhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/partyrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/partyrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\partyrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/playerhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/playerhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\playerhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/playerrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/playerrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\playerrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/skillhandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/skillhandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\skillhandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/skillrecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/skillrecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\skillrecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/tradehandler.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/tradehandler.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\tradehandler.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+build src/CMakeFiles/manaplus.dir/net/ea/traderecv.cpp.obj: CXX_COMPILER__manaplus_unscanned_ C$:/msys64/home/laptop/verse/src/net/ea/traderecv.cpp || cmake_object_order_depends_target_manaplus
+ DEP_FILE = src\CMakeFiles\manaplus.dir\net\ea\traderecv.cpp.obj.d
+ FLAGS = -DPACKAGE_NAME=\"MANAPLUS\" -DPACKAGE_VERSION=\"1.0.0\" -DPKG_DATADIR=\"MANAPLUS/\" -DLOCALEDIR=\"locale/\" -DENABLE_NLS=1 -DTMWA_SUPPORT=1 -DENABLE_LIBXML -DENABLE_ASSERTS -DUSE_SDL2 -DUSE_MUMBLE -DUSE_OPENGL
+ INCLUDES = -IC:/msys64/home/laptop/verse/src -IC:/msys64/ucrt64/include/SDL2 -IC:/msys64/ucrt64/include/libpng16 -IC:/msys64/ucrt64/include/rav1e -IC:/msys64/ucrt64/include/svt-av1 -IC:/msys64/ucrt64/include/webp -IC:/msys64/ucrt64/include/opus -IC:/msys64/ucrt64/include/freetype2 -IC:/msys64/ucrt64/include/harfbuzz -IC:/msys64/ucrt64/include/glib-2.0 -IC:/msys64/ucrt64/lib/glib-2.0/include -IC:/msys64/ucrt64/include/libxml2
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ OBJECT_FILE_DIR = src\CMakeFiles\manaplus.dir\net\ea
+
+
+# =============================================================================
+# Link build statements for EXECUTABLE target manaplus
+
+
+#############################################
+# Link the executable src\manaplus.exe
+
+build src/manaplus.exe: CXX_EXECUTABLE_LINKER__manaplus_ src/CMakeFiles/manaplus.dir/gui/widgets/avatarlistbox.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/battletab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/channeltab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/browserbox.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/button.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/characterdisplay.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/characterviewnormal.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/characterviewsmall.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/attrs/attrdisplay.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/attrs/changedisplay.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/attrs/derdisplay.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/clanwindowtabs.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/mapdebugtab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/netdebugtab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/targetdebugtab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/chattab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/clantab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/checkbox.cpp.obj src/CMakeFiles/manaplus.dir/gui/models/colormodel.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/colorpage.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/container.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/containerplacer.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/desktop.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/dropdown.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/emoteshortcutcontainer.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/extendedlistbox.cpp.obj src/CMakeFiles/manaplus.dir/gui/models/extendednamesmodel.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/flowcontainer.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/gmtab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/guildtab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/partytab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/horizontcontainer.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/icon.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/inttextfield.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/itemcontainer.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/itemlinkhandler.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/virtshortcutcontainer.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/emotepage.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/itemshortcutcontainer.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/spellshortcutcontainer.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/staticbrowserbox.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/statspage.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/statspagebasic.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/label.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/langtab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/layout.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/layoutarray.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/layoutcell.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/layouthelper.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/linepart.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/listbox.cpp.obj src/CMakeFiles/manaplus.dir/gui/models/modelistmodel.cpp.obj src/CMakeFiles/manaplus.dir/gui/models/namesmodel.cpp.obj src/CMakeFiles/manaplus.dir/gui/models/playertablemodel.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/passwordfield.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/pincode.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/playerbox.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/popup.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/popuplist.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/progressbar.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/progressindicator.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/radiobutton.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/radiogroup.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/scrollarea.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/setupbuttonitem.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/setupitem.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/setupquickitem.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setuptab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setuptabscroll.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/setuptouchitem.cpp.obj src/CMakeFiles/manaplus.dir/gui/models/shopitems.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/shoplistbox.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/shortcutcontainer.cpp.obj src/CMakeFiles/manaplus.dir/resources/skill/skilldata.cpp.obj src/CMakeFiles/manaplus.dir/resources/skill/skillinfo.cpp.obj src/CMakeFiles/manaplus.dir/gui/models/skillmodel.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/slider.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/sliderlist.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/statdebugtab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/tab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabbedarea.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/guitable.cpp.obj src/CMakeFiles/manaplus.dir/gui/models/tablemodel.cpp.obj src/CMakeFiles/manaplus.dir/gui/models/touchactionmodel.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabstrip.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/textbox.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/textfield.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/textpreview.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/tradetab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/vertcontainer.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/whispertab.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/widgetgroup.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/window.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/windowcontainer.cpp.obj src/CMakeFiles/manaplus.dir/gui/popups/beingpopup.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/buydialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/buyselldialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/changeemaildialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/changepassworddialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/charselectdialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/charcreatedialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/chatwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/clanwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/confirmdialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/connectiondialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/cutinwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/debugwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/didyouknowwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/editdialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/editserverdialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/emotewindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/equipmentwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/focushandler.cpp.obj src/CMakeFiles/manaplus.dir/gui/gui.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/helpwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/insertcarddialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/inventorywindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/itemamountwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/popups/itempopup.cpp.obj src/CMakeFiles/manaplus.dir/gui/popups/spellpopup.cpp.obj src/CMakeFiles/manaplus.dir/gui/popups/statuspopup.cpp.obj src/CMakeFiles/manaplus.dir/gui/popups/textboxpopup.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/killstats.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/logindialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/minimap.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/ministatuswindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/npcdialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/npcselldialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/okdialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/outfitwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/pincodedialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/textcommandeditor.cpp.obj src/CMakeFiles/manaplus.dir/gui/palette.cpp.obj src/CMakeFiles/manaplus.dir/gui/popupmanager.cpp.obj src/CMakeFiles/manaplus.dir/gui/popups/popupmenu.cpp.obj src/CMakeFiles/manaplus.dir/gui/popups/skillpopup.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/questswindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/quitdialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/registerdialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/sdlinput.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/selldialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/serverdialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/serverinfowindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/setupwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_audio.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_colors.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_joystick.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_misc.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_mods.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_theme.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_touch.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_chat.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_input.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_perfomance.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_relations.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_players.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_quick.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_video.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/setup_visual.cpp.obj src/CMakeFiles/manaplus.dir/gui/setupinputpages.cpp.obj src/CMakeFiles/manaplus.dir/input/pages/basic.cpp.obj src/CMakeFiles/manaplus.dir/input/pages/chat.cpp.obj src/CMakeFiles/manaplus.dir/input/pages/craft.cpp.obj src/CMakeFiles/manaplus.dir/input/pages/emotes.cpp.obj src/CMakeFiles/manaplus.dir/input/pages/gui.cpp.obj src/CMakeFiles/manaplus.dir/input/pages/move.cpp.obj src/CMakeFiles/manaplus.dir/input/pages/other.cpp.obj src/CMakeFiles/manaplus.dir/input/pages/outfits.cpp.obj src/CMakeFiles/manaplus.dir/input/pages/shortcuts.cpp.obj src/CMakeFiles/manaplus.dir/input/pages/windows.cpp.obj src/CMakeFiles/manaplus.dir/gui/fonts/font.cpp.obj src/CMakeFiles/manaplus.dir/gui/fonts/textchunk.cpp.obj src/CMakeFiles/manaplus.dir/gui/fonts/textchunklist.cpp.obj src/CMakeFiles/manaplus.dir/gui/fonts/textchunksmall.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/shopwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/shortcutwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/skilldialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/socialwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/popups/speechbubble.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/statuswindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/textdialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/textselectdialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/popups/textpopup.cpp.obj src/CMakeFiles/manaplus.dir/gui/skin.cpp.obj src/CMakeFiles/manaplus.dir/gui/theme.cpp.obj src/CMakeFiles/manaplus.dir/gui/themecolorsidoperators.cpp.obj src/CMakeFiles/manaplus.dir/gui/touchactiondata.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/tradewindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/updaterwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/userpalette.cpp.obj src/CMakeFiles/manaplus.dir/progs/manaverse/gui/viewport.cpp.obj src/CMakeFiles/manaplus.dir/gui/windowmanager.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/whoisonline.cpp.obj src/CMakeFiles/manaplus.dir/gui/windowmenu.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/worldselectdialog.cpp.obj src/CMakeFiles/manaplus.dir/net/charserverhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/download.cpp.obj src/CMakeFiles/manaplus.dir/net/ipc.cpp.obj src/CMakeFiles/manaplus.dir/net/messagein.cpp.obj src/CMakeFiles/manaplus.dir/net/messageout.cpp.obj src/CMakeFiles/manaplus.dir/net/net.cpp.obj src/CMakeFiles/manaplus.dir/net/sdltcpnet.cpp.obj src/CMakeFiles/manaplus.dir/net/updatetypeoperators.cpp.obj src/CMakeFiles/manaplus.dir/net/useragent.cpp.obj src/CMakeFiles/manaplus.dir/net/packetcounters.cpp.obj src/CMakeFiles/manaplus.dir/net/packetlimiter.cpp.obj src/CMakeFiles/manaplus.dir/resources/action.cpp.obj src/CMakeFiles/manaplus.dir/resources/ambientlayer.cpp.obj src/CMakeFiles/manaplus.dir/resources/animation/animation.cpp.obj src/CMakeFiles/manaplus.dir/resources/atlas/atlasmanager.cpp.obj src/CMakeFiles/manaplus.dir/resources/atlas/atlasresource.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/avatardb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/badgesdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/beingcommon.cpp.obj src/CMakeFiles/manaplus.dir/resources/beinginfo.cpp.obj src/CMakeFiles/manaplus.dir/resources/beingslot.cpp.obj src/CMakeFiles/manaplus.dir/resources/chatobject.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/chardb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/clandb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/colordb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/commandsdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/cursors.cpp.obj src/CMakeFiles/manaplus.dir/resources/dbmanager.cpp.obj src/CMakeFiles/manaplus.dir/resources/delayedmanager.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/deaddb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/elementaldb.cpp.obj src/CMakeFiles/manaplus.dir/resources/dye/dye.cpp.obj src/CMakeFiles/manaplus.dir/resources/dye/dyepalette.cpp.obj src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replaceacolor.cpp.obj src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replaceaoglcolor.cpp.obj src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replacescolor.cpp.obj src/CMakeFiles/manaplus.dir/resources/dye/dyepalette_replacesoglcolor.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/emotedb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/groupdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/homunculusdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/horsedb.cpp.obj src/CMakeFiles/manaplus.dir/resources/groupinfo.cpp.obj src/CMakeFiles/manaplus.dir/resources/image/image.cpp.obj src/CMakeFiles/manaplus.dir/resources/imagehelper.cpp.obj src/CMakeFiles/manaplus.dir/resources/imageset.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/itemdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/itemfielddb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/itemoptiondb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/languagedb.cpp.obj src/CMakeFiles/manaplus.dir/resources/iteminfo.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/mapdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/mercenarydb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/moddb.cpp.obj src/CMakeFiles/manaplus.dir/resources/mapreader.cpp.obj src/CMakeFiles/manaplus.dir/resources/memorycounter.cpp.obj src/CMakeFiles/manaplus.dir/resources/memorymanager.cpp.obj src/CMakeFiles/manaplus.dir/resources/mobileopenglscreenshothelper.cpp.obj src/CMakeFiles/manaplus.dir/resources/modinfo.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/monsterdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/networkdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/npcdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/npcdialogdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/openglimagehelper.cpp.obj src/CMakeFiles/manaplus.dir/resources/openglscreenshothelper.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/palettedb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/petdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/questdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/skillunitdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/resource.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/atlasloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/emptyatlasloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/imageloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/imagesetloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/musicloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/rescaledloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/shaderloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/shaderprogramloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/soundloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/spritedefloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/subimageloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/subimagesetloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/walklayerloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/loaders/xmlloader.cpp.obj src/CMakeFiles/manaplus.dir/resources/resourcemanager/resourcemanager.cpp.obj src/CMakeFiles/manaplus.dir/resources/safeopenglimagehelper.cpp.obj src/CMakeFiles/manaplus.dir/resources/sdl2imagehelper.cpp.obj src/CMakeFiles/manaplus.dir/resources/sdl2softwareimagehelper.cpp.obj src/CMakeFiles/manaplus.dir/resources/sdl2softwarescreenshothelper.cpp.obj src/CMakeFiles/manaplus.dir/resources/sdlgfxblitfunc.cpp.obj src/CMakeFiles/manaplus.dir/resources/sdlimagehelper.cpp.obj src/CMakeFiles/manaplus.dir/resources/sdlmusic.cpp.obj src/CMakeFiles/manaplus.dir/resources/sdlscreenshothelper.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/sounddb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/statdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/statuseffectdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/textdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/unitsdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/db/weaponsdb.cpp.obj src/CMakeFiles/manaplus.dir/resources/soundeffect.cpp.obj src/CMakeFiles/manaplus.dir/resources/sprite/spritedef.cpp.obj src/CMakeFiles/manaplus.dir/resources/image/subimage.cpp.obj src/CMakeFiles/manaplus.dir/resources/surfaceimagehelper.cpp.obj src/CMakeFiles/manaplus.dir/resources/wallpaper.cpp.obj src/CMakeFiles/manaplus.dir/utils/translation/podict.cpp.obj src/CMakeFiles/manaplus.dir/utils/translation/poparser.cpp.obj src/CMakeFiles/manaplus.dir/utils/translation/translationmanager.cpp.obj src/CMakeFiles/manaplus.dir/utils/base64.cpp.obj src/CMakeFiles/manaplus.dir/utils/browserboxtools.cpp.obj src/CMakeFiles/manaplus.dir/utils/chatutils.cpp.obj src/CMakeFiles/manaplus.dir/utils/checkutils.cpp.obj src/CMakeFiles/manaplus.dir/utils/copynpaste.cpp.obj src/CMakeFiles/manaplus.dir/utils/cpu.cpp.obj src/CMakeFiles/manaplus.dir/utils/dumplibs.cpp.obj src/CMakeFiles/manaplus.dir/utils/dumpsizes.cpp.obj src/CMakeFiles/manaplus.dir/utils/env.cpp.obj src/CMakeFiles/manaplus.dir/fs/files.cpp.obj src/CMakeFiles/manaplus.dir/utils/fuzzer.cpp.obj src/CMakeFiles/manaplus.dir/utils/gettexthelper.cpp.obj src/CMakeFiles/manaplus.dir/utils/gmfunctions.cpp.obj src/CMakeFiles/manaplus.dir/utils/itemxmlutils.cpp.obj src/CMakeFiles/manaplus.dir/utils/langs.cpp.obj src/CMakeFiles/manaplus.dir/utils/parameters.cpp.obj src/CMakeFiles/manaplus.dir/fs/paths.cpp.obj src/CMakeFiles/manaplus.dir/utils/performance.cpp.obj src/CMakeFiles/manaplus.dir/utils/perfstat.cpp.obj src/CMakeFiles/manaplus.dir/utils/pnglib.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/rwops.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/tools.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/list.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/fs.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/direntry.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/fsdir.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/fsdirrwops.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/fsentry.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/fszip.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/fsziprwops.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/zipentry.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/zipreader.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/ziplocalheader.cpp.obj src/CMakeFiles/manaplus.dir/utils/process.cpp.obj src/CMakeFiles/manaplus.dir/utils/sdl2helper.cpp.obj src/CMakeFiles/manaplus.dir/utils/sdl2logger.cpp.obj src/CMakeFiles/manaplus.dir/utils/sdl2musichelper.cpp.obj src/CMakeFiles/manaplus.dir/utils/sdlcheckutils.cpp.obj src/CMakeFiles/manaplus.dir/utils/sdlhelper.cpp.obj src/CMakeFiles/manaplus.dir/utils/sdlmusichelper.cpp.obj src/CMakeFiles/manaplus.dir/utils/stringutils.cpp.obj src/CMakeFiles/manaplus.dir/utils/timer.cpp.obj src/CMakeFiles/manaplus.dir/fs/virtfs/file.cpp.obj src/CMakeFiles/manaplus.dir/utils/naclmessages.cpp.obj src/CMakeFiles/manaplus.dir/fs/mkdir.cpp.obj src/CMakeFiles/manaplus.dir/utils/mrand.cpp.obj src/CMakeFiles/manaplus.dir/utils/xmlutils.cpp.obj src/CMakeFiles/manaplus.dir/utils/xml/libxml.cpp.obj src/CMakeFiles/manaplus.dir/test/testlauncher.cpp.obj src/CMakeFiles/manaplus.dir/test/testmain.cpp.obj src/CMakeFiles/manaplus.dir/progs/manaverse/actions/actions.cpp.obj src/CMakeFiles/manaplus.dir/progs/manaverse/actions/chat.cpp.obj src/CMakeFiles/manaplus.dir/progs/manaverse/actions/commands.cpp.obj src/CMakeFiles/manaplus.dir/progs/manaverse/actions/move.cpp.obj src/CMakeFiles/manaplus.dir/progs/manaverse/actions/pets.cpp.obj src/CMakeFiles/manaplus.dir/progs/manaverse/actions/statusbar.cpp.obj src/CMakeFiles/manaplus.dir/progs/manaverse/actions/tabs.cpp.obj src/CMakeFiles/manaplus.dir/progs/manaverse/actions/target.cpp.obj src/CMakeFiles/manaplus.dir/progs/manaverse/actions/windows.cpp.obj src/CMakeFiles/manaplus.dir/being/actor.cpp.obj src/CMakeFiles/manaplus.dir/being/actorsprite.cpp.obj src/CMakeFiles/manaplus.dir/enums/being/attributesstrings.cpp.obj src/CMakeFiles/manaplus.dir/listeners/arrowslistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/assertlistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/attributelistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/awaylistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/charrenamelistener.cpp.obj src/CMakeFiles/manaplus.dir/actormanager.cpp.obj src/CMakeFiles/manaplus.dir/resources/sprite/animatedsprite.cpp.obj src/CMakeFiles/manaplus.dir/resources/sprite/animationdelayload.cpp.obj src/CMakeFiles/manaplus.dir/particle/animationparticle.cpp.obj src/CMakeFiles/manaplus.dir/avatar.cpp.obj src/CMakeFiles/manaplus.dir/being/being.cpp.obj src/CMakeFiles/manaplus.dir/being/castingeffect.cpp.obj src/CMakeFiles/manaplus.dir/being/localclan.cpp.obj src/CMakeFiles/manaplus.dir/beingequipbackend.cpp.obj src/CMakeFiles/manaplus.dir/spellmanager.cpp.obj src/CMakeFiles/manaplus.dir/chatlogger.cpp.obj src/CMakeFiles/manaplus.dir/progs/manaverse/client.cpp.obj src/CMakeFiles/manaplus.dir/commandline.cpp.obj src/CMakeFiles/manaplus.dir/configmanager.cpp.obj src/CMakeFiles/manaplus.dir/being/compoundsprite.cpp.obj src/CMakeFiles/manaplus.dir/being/crazymoves.cpp.obj src/CMakeFiles/manaplus.dir/listeners/debugmessagelistener.cpp.obj src/CMakeFiles/manaplus.dir/configuration.cpp.obj src/CMakeFiles/manaplus.dir/defaults.cpp.obj src/CMakeFiles/manaplus.dir/dirs.cpp.obj src/CMakeFiles/manaplus.dir/effectmanager.cpp.obj src/CMakeFiles/manaplus.dir/gui/shortcut/emoteshortcut.cpp.obj src/CMakeFiles/manaplus.dir/eventsmanager.cpp.obj src/CMakeFiles/manaplus.dir/being/flooritem.cpp.obj src/CMakeFiles/manaplus.dir/game.cpp.obj src/CMakeFiles/manaplus.dir/gamemodifiers.cpp.obj src/CMakeFiles/manaplus.dir/render/graphics.cpp.obj src/CMakeFiles/manaplus.dir/graphicsmanager.cpp.obj src/CMakeFiles/manaplus.dir/render/vertexes/imagecollection.cpp.obj src/CMakeFiles/manaplus.dir/render/vertexes/imagevertexes.cpp.obj src/CMakeFiles/manaplus.dir/render/vertexes/openglgraphicsvertexes.cpp.obj src/CMakeFiles/manaplus.dir/guild.cpp.obj src/CMakeFiles/manaplus.dir/particle/imageparticle.cpp.obj src/CMakeFiles/manaplus.dir/resources/sprite/imagesprite.cpp.obj src/CMakeFiles/manaplus.dir/resources/inventory/complexinventory.cpp.obj src/CMakeFiles/manaplus.dir/resources/inventory/inventory.cpp.obj src/CMakeFiles/manaplus.dir/resources/item/cardslist.cpp.obj src/CMakeFiles/manaplus.dir/resources/item/complexitem.cpp.obj src/CMakeFiles/manaplus.dir/resources/item/item.cpp.obj src/CMakeFiles/manaplus.dir/itemcolormanager.cpp.obj src/CMakeFiles/manaplus.dir/gui/shortcut/itemshortcut.cpp.obj src/CMakeFiles/manaplus.dir/itemsoundmanager.cpp.obj src/CMakeFiles/manaplus.dir/gui/shortcut/dropshortcut.cpp.obj src/CMakeFiles/manaplus.dir/gui/shortcut/spellshortcut.cpp.obj src/CMakeFiles/manaplus.dir/textcommand.cpp.obj src/CMakeFiles/manaplus.dir/input/inputactionoperators.cpp.obj src/CMakeFiles/manaplus.dir/input/inputmanager.cpp.obj src/CMakeFiles/manaplus.dir/input/joystick.cpp.obj src/CMakeFiles/manaplus.dir/input/keyboardconfig.cpp.obj src/CMakeFiles/manaplus.dir/input/touch/multitouchmanager.cpp.obj src/CMakeFiles/manaplus.dir/being/localplayer.cpp.obj src/CMakeFiles/manaplus.dir/logger.cpp.obj src/CMakeFiles/manaplus.dir/main.cpp.obj src/CMakeFiles/manaplus.dir/maingui.cpp.obj src/CMakeFiles/manaplus.dir/resources/map/map.cpp.obj src/CMakeFiles/manaplus.dir/resources/map/mapheights.cpp.obj src/CMakeFiles/manaplus.dir/resources/map/mapitem.cpp.obj src/CMakeFiles/manaplus.dir/resources/map/maplayer.cpp.obj src/CMakeFiles/manaplus.dir/resources/map/objectslayer.cpp.obj src/CMakeFiles/manaplus.dir/render/opengl/mgl.cpp.obj src/CMakeFiles/manaplus.dir/render/opengl/mglemu.cpp.obj src/CMakeFiles/manaplus.dir/render/mobileopengl2graphics.cpp.obj src/CMakeFiles/manaplus.dir/render/mobileopenglgraphics.cpp.obj src/CMakeFiles/manaplus.dir/render/modernopenglgraphics.cpp.obj src/CMakeFiles/manaplus.dir/render/nacl/naclgles.cpp.obj src/CMakeFiles/manaplus.dir/mumblemanager.cpp.obj src/CMakeFiles/manaplus.dir/navigationmanager.cpp.obj src/CMakeFiles/manaplus.dir/render/normalopenglgraphics.cpp.obj src/CMakeFiles/manaplus.dir/notifymanager.cpp.obj src/CMakeFiles/manaplus.dir/render/imagegraphics.cpp.obj src/CMakeFiles/manaplus.dir/render/nullopenglgraphics.cpp.obj src/CMakeFiles/manaplus.dir/render/renderers.cpp.obj src/CMakeFiles/manaplus.dir/particle/particle.cpp.obj src/CMakeFiles/manaplus.dir/particle/particlecontainer.cpp.obj src/CMakeFiles/manaplus.dir/particle/particleemitter.cpp.obj src/CMakeFiles/manaplus.dir/particle/particleengine.cpp.obj src/CMakeFiles/manaplus.dir/particle/particlelist.cpp.obj src/CMakeFiles/manaplus.dir/particle/particlevector.cpp.obj src/CMakeFiles/manaplus.dir/party.cpp.obj src/CMakeFiles/manaplus.dir/pincodemanager.cpp.obj src/CMakeFiles/manaplus.dir/being/playerinfo.cpp.obj src/CMakeFiles/manaplus.dir/being/playerrelation.cpp.obj src/CMakeFiles/manaplus.dir/being/playerrelations.cpp.obj src/CMakeFiles/manaplus.dir/listeners/renamelistener.cpp.obj src/CMakeFiles/manaplus.dir/position.cpp.obj src/CMakeFiles/manaplus.dir/resources/map/speciallayer.cpp.obj src/CMakeFiles/manaplus.dir/resources/map/tileanimation.cpp.obj src/CMakeFiles/manaplus.dir/particle/rotationalparticle.cpp.obj src/CMakeFiles/manaplus.dir/render/safeopenglgraphics.cpp.obj src/CMakeFiles/manaplus.dir/render/sdl2graphics.cpp.obj src/CMakeFiles/manaplus.dir/render/sdl2softwaregraphics.cpp.obj src/CMakeFiles/manaplus.dir/render/sdlgraphics.cpp.obj src/CMakeFiles/manaplus.dir/settings.cpp.obj src/CMakeFiles/manaplus.dir/resources/item/shopitem.cpp.obj src/CMakeFiles/manaplus.dir/gui/shortcut/shortcutbase.cpp.obj src/CMakeFiles/manaplus.dir/resources/animation/simpleanimation.cpp.obj src/CMakeFiles/manaplus.dir/soundmanager.cpp.obj src/CMakeFiles/manaplus.dir/statuseffect.cpp.obj src/CMakeFiles/manaplus.dir/render/surfacegraphics.cpp.obj src/CMakeFiles/manaplus.dir/render/shaders/shader.cpp.obj src/CMakeFiles/manaplus.dir/render/shaders/shaderprogram.cpp.obj src/CMakeFiles/manaplus.dir/render/shaders/shadersmanager.cpp.obj src/CMakeFiles/manaplus.dir/text.cpp.obj src/CMakeFiles/manaplus.dir/textmanager.cpp.obj src/CMakeFiles/manaplus.dir/particle/textparticle.cpp.obj src/CMakeFiles/manaplus.dir/input/touch/touchactions.cpp.obj src/CMakeFiles/manaplus.dir/input/touch/touchmanager.cpp.obj src/CMakeFiles/manaplus.dir/resources/vector.cpp.obj src/CMakeFiles/manaplus.dir/resources/map/walklayer.cpp.obj src/CMakeFiles/manaplus.dir/listeners/errorlistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/gamemodifierlistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/guitableactionlistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/inputactionremotelistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/inputactionreplayconfirmlistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/inputactionreplaylistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/playerdeathlistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/playerlistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/statlistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/textskilllistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/tooltiplistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/updatestatuslistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/uploadlistener.cpp.obj src/CMakeFiles/manaplus.dir/utils/sdlsharedhelper.cpp.obj src/CMakeFiles/manaplus.dir/listeners/wrongdatanoticelistener.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/basiccontainer.cpp.obj src/CMakeFiles/manaplus.dir/gui/dialogsmanager.cpp.obj src/CMakeFiles/manaplus.dir/input/key.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/widget.cpp.obj src/CMakeFiles/manaplus.dir/gui/widgets/basiccontainer2.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/bankwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/buyingstoreselldialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/eggselectiondialog.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/maileditwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/mailviewwindow.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/mailwindow.cpp.obj src/CMakeFiles/manaplus.dir/listeners/banklistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/buyingstoremodelistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/buyingstoreslotslistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/changepincodelistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/newpincodelistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/newpincoderetrylistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/pincodelistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/shoprenamelistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/skillwarplistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/vendingmodelistener.cpp.obj src/CMakeFiles/manaplus.dir/listeners/vendingslotslistener.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/achievementrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/adminrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/adminhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/achievementhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/attendancehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/attendancerecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/auctionrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/auctionhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/bankrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/bankhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/battlegroundrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/battlegroundhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/cashshophandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/cashshoprecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/beingrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/beinghandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/buyingstorehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/buyingstorerecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/buysellhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/buysellrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/charserverhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/charserverrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/chathandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/chatrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/clanhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/clanrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/elementalhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/elementalrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/familyhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/familyrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/friendshandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/friendsrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/gamehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/gamerecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/generalhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/generalrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/guildhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/guildrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/homunculushandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/homunculusrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/inventoryhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/inventoryrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/itemhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/itemrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/loginhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/loginrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/mail2recv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/mail2handler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/mailhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/mailrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/maphandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/maprecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/markethandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/marketrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/barterhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/barterrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/menu.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/mercenaryhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/mercenaryrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/messagein.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/messageout.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/network.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/npchandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/npcrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/partyhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/partyrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/pethandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/petrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/playerhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/playerrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/protocolout.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/questhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/questrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/refinehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/refinerecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/roulettehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/rouletterecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/searchstorehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/searchstorerecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/serverfeatures.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/skillhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/skillrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/tradehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/traderecv.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol_main.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol_re.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/updateprotocol_zero.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/vendinghandler.cpp.obj src/CMakeFiles/manaplus.dir/net/eathena/vendingrecv.cpp.obj src/CMakeFiles/manaplus.dir/fs/specialfolder.cpp.obj src/CMakeFiles/manaplus.dir/manaplus.rc.obj src/CMakeFiles/manaplus.dir/gui/widgets/tabs/chat/emulateguildtab.cpp.obj src/CMakeFiles/manaplus.dir/gui/windows/shopselldialog.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/adminhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/adminrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/achievementhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/attendancehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/beingrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/beinghandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/buysellhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/buysellrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/charserverhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/charserverrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/chathandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/chatrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/clanhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/gamehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/gamerecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/generalhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/generalrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/guildhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/guildmanager.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/inventoryhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/inventoryrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/itemhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/itemrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/loginhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/loginrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/messagein.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/messageout.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/network.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/npchandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/partyhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/partyrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/pethandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/playerhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/playerrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/protocolout.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/questhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/questrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/serverfeatures.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/skillhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/skillrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/tradehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/traderecv.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/updateprotocol.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/auctionhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/bankhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/battlegroundhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/buyingstorehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/cashshophandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/elementalhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/familyhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/friendshandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/homunculushandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/mailhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/mail2handler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/maphandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/markethandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/barterhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/mercenaryhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/refinehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/roulettehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/searchstorehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/tmwa/vendinghandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/adminhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/beingrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/beinghandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/buysellhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/buysellrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/charserverhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/charserverrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/chathandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/chatrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/gamehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/gamerecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/inventoryhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/inventoryrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/itemhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/itemrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/loginhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/loginrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/network.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/maprecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/npchandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/npcrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/partyhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/partyrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/playerhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/playerrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/skillhandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/skillrecv.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/tradehandler.cpp.obj src/CMakeFiles/manaplus.dir/net/ea/traderecv.cpp.obj | C$:/msys64/ucrt64/lib/libpng.dll.a C$:/msys64/ucrt64/lib/libz.dll.a C$:/msys64/ucrt64/lib/libz.dll.a C$:/msys64/ucrt64/lib/libcurl.dll.a C$:/msys64/ucrt64/lib/libxml2.dll.a C$:/msys64/ucrt64/lib/libintl.dll.a C$:/msys64/ucrt64/lib/libpng.dll.a C$:/msys64/ucrt64/lib/libz.dll.a C$:/msys64/ucrt64/lib/libxml2.dll.a C$:/msys64/ucrt64/lib/libintl.dll.a
+ LINK_FLAGS = -mwindows
+ LINK_LIBRARIES = -lmingw32 -lSDL2main -lSDL2 -lSDL2_gfx -lmingw32 -lSDL2main -lSDL2 -lSDL2_image -lmingw32 -lSDL2main -lSDL2 -lSDL2_mixer -lmingw32 -lSDL2main -lSDL2 -lSDL2_net -lmingw32 -lSDL2main -lSDL2 -lSDL2_ttf -lmingw32 -lSDL2main -lSDL2 C:/msys64/ucrt64/lib/libpng.dll.a C:/msys64/ucrt64/lib/libz.dll.a C:/msys64/ucrt64/lib/libz.dll.a C:/msys64/ucrt64/lib/libcurl.dll.a C:/msys64/ucrt64/lib/libxml2.dll.a -lopengl32 -lglu32 C:/msys64/ucrt64/lib/libintl.dll.a -lws2_32 -lwinmm -lSDL2_gfx -lSDL2_image -lSDL2_mixer -lSDL2_net -lSDL2_ttf C:/msys64/ucrt64/lib/libpng.dll.a C:/msys64/ucrt64/lib/libz.dll.a C:/msys64/ucrt64/lib/libxml2.dll.a -lopengl32 -lglu32 C:/msys64/ucrt64/lib/libintl.dll.a -lws2_32 -lwinmm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
+ OBJECT_DIR = src\CMakeFiles\manaplus.dir
+ POST_BUILD = cd .
+ PRE_LINK = cd .
+ TARGET_FILE = src\manaplus.exe
+ TARGET_IMPLIB = src\libmanaplus.dll.a
+ TARGET_PDB = manaplus.exe.dbg
+ RSP_FILE = CMakeFiles\manaplus.rsp
+
+
+#############################################
+# Utility command for package
+
+build src/CMakeFiles/package.util: CUSTOM_COMMAND src/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build src/package: phony src/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build src/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build src/package_source: phony src/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build src/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\src && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build src/edit_cache: phony src/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build src/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\src && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build src/rebuild_cache: phony src/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build src/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build src/CMakeFiles/install.util: CUSTOM_COMMAND src/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\src && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build src/install: phony src/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build src/CMakeFiles/install/local.util: CUSTOM_COMMAND src/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\src && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build src/install/local: phony src/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build src/CMakeFiles/install/strip.util: CUSTOM_COMMAND src/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\src && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build src/install/strip: phony src/CMakeFiles/install/strip.util
+
+# =============================================================================
+# Write statements declared in CMakeLists.txt:
+# C:/msys64/home/laptop/verse/CMakeLists.txt
+# =============================================================================
+
+
+#############################################
+# Utility command for update-po
+
+build po/update-po: phony po/update-translation-ca po/update-translation-cs po/update-translation-de po/update-translation-eo po/update-translation-es po/update-translation-fi po/update-translation-fr po/update-translation-id po/update-translation-it po/update-translation-ja po/update-translation-nl po/update-translation-nl_BE po/update-translation-pl po/update-translation-pt po/update-translation-pt_BR po/update-translation-ru po/update-translation-sr po/update-translation-sv po/update-translation-sv_SE po/update-translation-tr po/update-translation-uk po/update-translation-zh_CN po/update-translation-zh_HK
+
+
+#############################################
+# Utility command for translations
+
+build po/translations: phony po/CMakeFiles/translations po/ca.gmo po/cs.gmo po/de.gmo po/eo.gmo po/es.gmo po/fi.gmo po/fr.gmo po/id.gmo po/it.gmo po/ja.gmo po/nl.gmo po/nl_BE.gmo po/pl.gmo po/pt.gmo po/pt_BR.gmo po/ru.gmo po/sr.gmo po/sv.gmo po/sv_SE.gmo po/tr.gmo po/uk.gmo po/zh_CN.gmo po/zh_HK.gmo
+
+
+#############################################
+# Utility command for update-pot
+
+build po/update-pot: phony po/CMakeFiles/update-pot po/update-translatable-files
+
+
+#############################################
+# Utility command for update-translatable-files
+
+build po/update-translatable-files: phony po/CMakeFiles/update-translatable-files
+
+
+#############################################
+# Utility command for update-translation-ca
+
+build po/update-translation-ca: phony po/CMakeFiles/update-translation-ca po/update-pot
+
+
+#############################################
+# Utility command for update-translation-cs
+
+build po/update-translation-cs: phony po/CMakeFiles/update-translation-cs po/update-pot
+
+
+#############################################
+# Utility command for update-translation-de
+
+build po/update-translation-de: phony po/CMakeFiles/update-translation-de po/update-pot
+
+
+#############################################
+# Utility command for update-translation-eo
+
+build po/update-translation-eo: phony po/CMakeFiles/update-translation-eo po/update-pot
+
+
+#############################################
+# Utility command for update-translation-es
+
+build po/update-translation-es: phony po/CMakeFiles/update-translation-es po/update-pot
+
+
+#############################################
+# Utility command for update-translation-fi
+
+build po/update-translation-fi: phony po/CMakeFiles/update-translation-fi po/update-pot
+
+
+#############################################
+# Utility command for update-translation-fr
+
+build po/update-translation-fr: phony po/CMakeFiles/update-translation-fr po/update-pot
+
+
+#############################################
+# Utility command for update-translation-id
+
+build po/update-translation-id: phony po/CMakeFiles/update-translation-id po/update-pot
+
+
+#############################################
+# Utility command for update-translation-it
+
+build po/update-translation-it: phony po/CMakeFiles/update-translation-it po/update-pot
+
+
+#############################################
+# Utility command for update-translation-ja
+
+build po/update-translation-ja: phony po/CMakeFiles/update-translation-ja po/update-pot
+
+
+#############################################
+# Utility command for update-translation-nl
+
+build po/update-translation-nl: phony po/CMakeFiles/update-translation-nl po/update-pot
+
+
+#############################################
+# Utility command for update-translation-nl_BE
+
+build po/update-translation-nl_BE: phony po/CMakeFiles/update-translation-nl_BE po/update-pot
+
+
+#############################################
+# Utility command for update-translation-pl
+
+build po/update-translation-pl: phony po/CMakeFiles/update-translation-pl po/update-pot
+
+
+#############################################
+# Utility command for update-translation-pt
+
+build po/update-translation-pt: phony po/CMakeFiles/update-translation-pt po/update-pot
+
+
+#############################################
+# Utility command for update-translation-pt_BR
+
+build po/update-translation-pt_BR: phony po/CMakeFiles/update-translation-pt_BR po/update-pot
+
+
+#############################################
+# Utility command for update-translation-ru
+
+build po/update-translation-ru: phony po/CMakeFiles/update-translation-ru po/update-pot
+
+
+#############################################
+# Utility command for update-translation-sr
+
+build po/update-translation-sr: phony po/CMakeFiles/update-translation-sr po/update-pot
+
+
+#############################################
+# Utility command for update-translation-sv
+
+build po/update-translation-sv: phony po/CMakeFiles/update-translation-sv po/update-pot
+
+
+#############################################
+# Utility command for update-translation-sv_SE
+
+build po/update-translation-sv_SE: phony po/CMakeFiles/update-translation-sv_SE po/update-pot
+
+
+#############################################
+# Utility command for update-translation-tr
+
+build po/update-translation-tr: phony po/CMakeFiles/update-translation-tr po/update-pot
+
+
+#############################################
+# Utility command for update-translation-uk
+
+build po/update-translation-uk: phony po/CMakeFiles/update-translation-uk po/update-pot
+
+
+#############################################
+# Utility command for update-translation-zh_CN
+
+build po/update-translation-zh_CN: phony po/CMakeFiles/update-translation-zh_CN po/update-pot
+
+
+#############################################
+# Utility command for update-translation-zh_HK
+
+build po/update-translation-zh_HK: phony po/CMakeFiles/update-translation-zh_HK po/update-pot
+
+
+#############################################
+# Utility command for package
+
+build po/CMakeFiles/package.util: CUSTOM_COMMAND po/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackConfig.cmake"
+ DESC = Run CPack packaging tool...
+ pool = console
+ restat = 1
+
+build po/package: phony po/CMakeFiles/package.util
+
+
+#############################################
+# Utility command for package_source
+
+build po/CMakeFiles/package_source.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default && C:\msys64\ucrt64\bin\cpack.exe --config ./CPackSourceConfig.cmake C:/msys64/home/laptop/verse/out/build/default/CPackSourceConfig.cmake"
+ DESC = Run CPack packaging tool for source...
+ pool = console
+ restat = 1
+
+build po/package_source: phony po/CMakeFiles/package_source.util
+
+
+#############################################
+# Utility command for edit_cache
+
+build po/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
+ DESC = No interactive CMake dialog available...
+ restat = 1
+
+build po/edit_cache: phony po/CMakeFiles/edit_cache.util
+
+
+#############################################
+# Utility command for rebuild_cache
+
+build po/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\cmake.exe --regenerate-during-build -SC:\msys64\home\laptop\verse -BC:\msys64\home\laptop\verse\out\build\default"
+ DESC = Running CMake to regenerate build system...
+ pool = console
+ restat = 1
+
+build po/rebuild_cache: phony po/CMakeFiles/rebuild_cache.util
+
+
+#############################################
+# Utility command for list_install_components
+
+build po/list_install_components: phony
+
+
+#############################################
+# Utility command for install
+
+build po/CMakeFiles/install.util: CUSTOM_COMMAND po/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\cmake.exe -P cmake_install.cmake"
+ DESC = Install the project...
+ pool = console
+ restat = 1
+
+build po/install: phony po/CMakeFiles/install.util
+
+
+#############################################
+# Utility command for install/local
+
+build po/CMakeFiles/install/local.util: CUSTOM_COMMAND po/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake"
+ DESC = Installing only the local directory...
+ pool = console
+ restat = 1
+
+build po/install/local: phony po/CMakeFiles/install/local.util
+
+
+#############################################
+# Utility command for install/strip
+
+build po/CMakeFiles/install/strip.util: CUSTOM_COMMAND po/all
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake"
+ DESC = Installing the project stripped...
+ pool = console
+ restat = 1
+
+build po/install/strip: phony po/CMakeFiles/install/strip.util
+
+
+#############################################
+# Phony custom command for po\CMakeFiles\translations
+
+build po/CMakeFiles/translations | ${cmake_ninja_workdir}po/CMakeFiles/translations: phony po/ca.gmo po/cs.gmo po/de.gmo po/eo.gmo po/es.gmo po/fi.gmo po/fr.gmo po/id.gmo po/it.gmo po/ja.gmo po/nl.gmo po/nl_BE.gmo po/pl.gmo po/pt.gmo po/pt_BR.gmo po/ru.gmo po/sr.gmo po/sv.gmo po/sv_SE.gmo po/tr.gmo po/uk.gmo po/zh_CN.gmo po/zh_HK.gmo
+
+
+#############################################
+# Custom command for po\ca.gmo
+
+build po/ca.gmo | ${cmake_ninja_workdir}po/ca.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/ca.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/ca.gmo C:/msys64/home/laptop/verse/po/ca.po"
+ DESC = Generating ca.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\cs.gmo
+
+build po/cs.gmo | ${cmake_ninja_workdir}po/cs.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/cs.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/cs.gmo C:/msys64/home/laptop/verse/po/cs.po"
+ DESC = Generating cs.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\de.gmo
+
+build po/de.gmo | ${cmake_ninja_workdir}po/de.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/de.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/de.gmo C:/msys64/home/laptop/verse/po/de.po"
+ DESC = Generating de.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\eo.gmo
+
+build po/eo.gmo | ${cmake_ninja_workdir}po/eo.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/eo.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/eo.gmo C:/msys64/home/laptop/verse/po/eo.po"
+ DESC = Generating eo.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\es.gmo
+
+build po/es.gmo | ${cmake_ninja_workdir}po/es.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/es.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/es.gmo C:/msys64/home/laptop/verse/po/es.po"
+ DESC = Generating es.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\fi.gmo
+
+build po/fi.gmo | ${cmake_ninja_workdir}po/fi.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/fi.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/fi.gmo C:/msys64/home/laptop/verse/po/fi.po"
+ DESC = Generating fi.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\fr.gmo
+
+build po/fr.gmo | ${cmake_ninja_workdir}po/fr.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/fr.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/fr.gmo C:/msys64/home/laptop/verse/po/fr.po"
+ DESC = Generating fr.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\id.gmo
+
+build po/id.gmo | ${cmake_ninja_workdir}po/id.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/id.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/id.gmo C:/msys64/home/laptop/verse/po/id.po"
+ DESC = Generating id.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\it.gmo
+
+build po/it.gmo | ${cmake_ninja_workdir}po/it.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/it.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/it.gmo C:/msys64/home/laptop/verse/po/it.po"
+ DESC = Generating it.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\ja.gmo
+
+build po/ja.gmo | ${cmake_ninja_workdir}po/ja.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/ja.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/ja.gmo C:/msys64/home/laptop/verse/po/ja.po"
+ DESC = Generating ja.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\nl.gmo
+
+build po/nl.gmo | ${cmake_ninja_workdir}po/nl.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/nl.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/nl.gmo C:/msys64/home/laptop/verse/po/nl.po"
+ DESC = Generating nl.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\nl_BE.gmo
+
+build po/nl_BE.gmo | ${cmake_ninja_workdir}po/nl_BE.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/nl_BE.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/nl_BE.gmo C:/msys64/home/laptop/verse/po/nl_BE.po"
+ DESC = Generating nl_BE.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\pl.gmo
+
+build po/pl.gmo | ${cmake_ninja_workdir}po/pl.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/pl.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/pl.gmo C:/msys64/home/laptop/verse/po/pl.po"
+ DESC = Generating pl.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\pt.gmo
+
+build po/pt.gmo | ${cmake_ninja_workdir}po/pt.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/pt.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/pt.gmo C:/msys64/home/laptop/verse/po/pt.po"
+ DESC = Generating pt.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\pt_BR.gmo
+
+build po/pt_BR.gmo | ${cmake_ninja_workdir}po/pt_BR.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/pt_BR.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/pt_BR.gmo C:/msys64/home/laptop/verse/po/pt_BR.po"
+ DESC = Generating pt_BR.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\ru.gmo
+
+build po/ru.gmo | ${cmake_ninja_workdir}po/ru.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/ru.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/ru.gmo C:/msys64/home/laptop/verse/po/ru.po"
+ DESC = Generating ru.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\sr.gmo
+
+build po/sr.gmo | ${cmake_ninja_workdir}po/sr.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/sr.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/sr.gmo C:/msys64/home/laptop/verse/po/sr.po"
+ DESC = Generating sr.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\sv.gmo
+
+build po/sv.gmo | ${cmake_ninja_workdir}po/sv.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/sv.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/sv.gmo C:/msys64/home/laptop/verse/po/sv.po"
+ DESC = Generating sv.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\sv_SE.gmo
+
+build po/sv_SE.gmo | ${cmake_ninja_workdir}po/sv_SE.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/sv_SE.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/sv_SE.gmo C:/msys64/home/laptop/verse/po/sv_SE.po"
+ DESC = Generating sv_SE.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\tr.gmo
+
+build po/tr.gmo | ${cmake_ninja_workdir}po/tr.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/tr.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/tr.gmo C:/msys64/home/laptop/verse/po/tr.po"
+ DESC = Generating tr.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\uk.gmo
+
+build po/uk.gmo | ${cmake_ninja_workdir}po/uk.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/uk.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/uk.gmo C:/msys64/home/laptop/verse/po/uk.po"
+ DESC = Generating uk.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\zh_CN.gmo
+
+build po/zh_CN.gmo | ${cmake_ninja_workdir}po/zh_CN.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/zh_CN.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/zh_CN.gmo C:/msys64/home/laptop/verse/po/zh_CN.po"
+ DESC = Generating zh_CN.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\zh_HK.gmo
+
+build po/zh_HK.gmo | ${cmake_ninja_workdir}po/zh_HK.gmo: CUSTOM_COMMAND C$:/msys64/home/laptop/verse/po/manaplus.pot C$:/msys64/home/laptop/verse/po/zh_HK.po
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgfmt.exe -o C:/msys64/home/laptop/verse/out/build/default/po/zh_HK.gmo C:/msys64/home/laptop/verse/po/zh_HK.po"
+ DESC = Generating zh_HK.gmo
+ restat = 1
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-pot
+
+build po/CMakeFiles/update-pot | ${cmake_ninja_workdir}po/CMakeFiles/update-pot: CUSTOM_COMMAND || po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && xgettext --files-from=translatable-files --directory=. --output=manaplus.pot -d manaplus --keyword=_ --keyword=N_"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translatable-files
+
+build po/CMakeFiles/update-translatable-files | ${cmake_ninja_workdir}po/CMakeFiles/update-translatable-files: CUSTOM_COMMAND
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && grep '_(' -Irl ../src | sort > translatable-files"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-ca
+
+build po/CMakeFiles/update-translation-ca | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-ca: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/ca.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-cs
+
+build po/CMakeFiles/update-translation-cs | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-cs: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/cs.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-de
+
+build po/CMakeFiles/update-translation-de | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-de: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/de.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-eo
+
+build po/CMakeFiles/update-translation-eo | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-eo: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/eo.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-es
+
+build po/CMakeFiles/update-translation-es | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-es: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/es.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-fi
+
+build po/CMakeFiles/update-translation-fi | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-fi: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/fi.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-fr
+
+build po/CMakeFiles/update-translation-fr | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-fr: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/fr.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-id
+
+build po/CMakeFiles/update-translation-id | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-id: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/id.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-it
+
+build po/CMakeFiles/update-translation-it | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-it: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/it.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-ja
+
+build po/CMakeFiles/update-translation-ja | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-ja: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/ja.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-nl
+
+build po/CMakeFiles/update-translation-nl | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-nl: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/nl.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-nl_BE
+
+build po/CMakeFiles/update-translation-nl_BE | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-nl_BE: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/nl_BE.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-pl
+
+build po/CMakeFiles/update-translation-pl | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-pl: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/pl.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-pt
+
+build po/CMakeFiles/update-translation-pt | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-pt: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/pt.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-pt_BR
+
+build po/CMakeFiles/update-translation-pt_BR | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-pt_BR: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/pt_BR.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-ru
+
+build po/CMakeFiles/update-translation-ru | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-ru: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/ru.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-sr
+
+build po/CMakeFiles/update-translation-sr | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-sr: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/sr.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-sv
+
+build po/CMakeFiles/update-translation-sv | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-sv: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/sv.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-sv_SE
+
+build po/CMakeFiles/update-translation-sv_SE | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-sv_SE: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/sv_SE.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-tr
+
+build po/CMakeFiles/update-translation-tr | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-tr: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/tr.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-uk
+
+build po/CMakeFiles/update-translation-uk | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-uk: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/uk.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-zh_CN
+
+build po/CMakeFiles/update-translation-zh_CN | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-zh_CN: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/zh_CN.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+
+#############################################
+# Custom command for po\CMakeFiles\update-translation-zh_HK
+
+build po/CMakeFiles/update-translation-zh_HK | ${cmake_ninja_workdir}po/CMakeFiles/update-translation-zh_HK: CUSTOM_COMMAND || po/update-pot po/update-translatable-files
+ COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D C:\msys64\home\laptop\verse\out\build\default\po && C:\msys64\ucrt64\bin\msgmerge.exe --quiet --update --backup=none -s C:/msys64/home/laptop/verse/po/zh_HK.po C:/msys64/home/laptop/verse/po/manaplus.pot"
+
+# =============================================================================
+# Target aliases.
+
+build manaplus: phony src/manaplus.exe
+
+build manaplus.exe: phony src/manaplus.exe
+
+build translations: phony po/translations
+
+build update-po: phony po/update-po
+
+build update-pot: phony po/update-pot
+
+build update-translatable-files: phony po/update-translatable-files
+
+build update-translation-ca: phony po/update-translation-ca
+
+build update-translation-cs: phony po/update-translation-cs
+
+build update-translation-de: phony po/update-translation-de
+
+build update-translation-eo: phony po/update-translation-eo
+
+build update-translation-es: phony po/update-translation-es
+
+build update-translation-fi: phony po/update-translation-fi
+
+build update-translation-fr: phony po/update-translation-fr
+
+build update-translation-id: phony po/update-translation-id
+
+build update-translation-it: phony po/update-translation-it
+
+build update-translation-ja: phony po/update-translation-ja
+
+build update-translation-nl: phony po/update-translation-nl
+
+build update-translation-nl_BE: phony po/update-translation-nl_BE
+
+build update-translation-pl: phony po/update-translation-pl
+
+build update-translation-pt: phony po/update-translation-pt
+
+build update-translation-pt_BR: phony po/update-translation-pt_BR
+
+build update-translation-ru: phony po/update-translation-ru
+
+build update-translation-sr: phony po/update-translation-sr
+
+build update-translation-sv: phony po/update-translation-sv
+
+build update-translation-sv_SE: phony po/update-translation-sv_SE
+
+build update-translation-tr: phony po/update-translation-tr
+
+build update-translation-uk: phony po/update-translation-uk
+
+build update-translation-zh_CN: phony po/update-translation-zh_CN
+
+build update-translation-zh_HK: phony po/update-translation-zh_HK
+
+# =============================================================================
+# Folder targets.
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default
+
+build all: phony data/all src/all po/all
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data
+
+build data/all: phony data/fonts/all data/graphics/all data/help/all data/icons/all data/music/all data/perserver/all data/sfx/all data/test/all data/themes/all data/translations/all
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/fonts
+
+build data/fonts/all: phony data/fonts/src/all
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/fonts/src
+
+build data/fonts/src/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/graphics
+
+build data/graphics/all: phony data/graphics/badges/all data/graphics/flags/all data/graphics/gui/all data/graphics/images/all data/graphics/shaders/all data/graphics/sprites/all
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/graphics/badges
+
+build data/graphics/badges/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/graphics/flags
+
+build data/graphics/flags/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/graphics/gui
+
+build data/graphics/gui/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/graphics/images
+
+build data/graphics/images/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/graphics/shaders
+
+build data/graphics/shaders/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/graphics/sprites
+
+build data/graphics/sprites/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/help
+
+build data/help/all: phony data/help/tips/all
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/help/tips
+
+build data/help/tips/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/icons
+
+build data/icons/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/music
+
+build data/music/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/perserver
+
+build data/perserver/all: phony data/perserver/default/all
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/perserver/default
+
+build data/perserver/default/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/sfx
+
+build data/sfx/all: phony data/sfx/system/all
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/sfx/system
+
+build data/sfx/system/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/test
+
+build data/test/all: phony data/test/dir2/all
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/test/dir2
+
+build data/test/dir2/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes
+
+build data/themes/all: phony data/themes/blacknblack/all data/themes/blackwood/all data/themes/classic/all data/themes/enchilado/all data/themes/golden-delicious/all data/themes/jewelry/all data/themes/jewelry-simple/all data/themes/mana/all data/themes/pink/all data/themes/unity/all data/themes/wood/all
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes/blacknblack
+
+build data/themes/blacknblack/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes/blackwood
+
+build data/themes/blackwood/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes/classic
+
+build data/themes/classic/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes/enchilado
+
+build data/themes/enchilado/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes/golden-delicious
+
+build data/themes/golden-delicious/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes/jewelry
+
+build data/themes/jewelry/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes/jewelry-simple
+
+build data/themes/jewelry-simple/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes/mana
+
+build data/themes/mana/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes/pink
+
+build data/themes/pink/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes/unity
+
+build data/themes/unity/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/themes/wood
+
+build data/themes/wood/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/translations
+
+build data/translations/all: phony data/translations/test/all
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/data/translations/test
+
+build data/translations/test/all: phony
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/po
+
+build po/all: phony po/translations
+
+# =============================================================================
+
+#############################################
+# Folder: C:/msys64/home/laptop/verse/out/build/default/src
+
+build src/all: phony src/manaplus.exe
+
+# =============================================================================
+# Built-in targets
+
+
+#############################################
+# Re-run CMake if any of its inputs changed.
+
+build build.ninja C$:/msys64/home/laptop/verse/out/build/default/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/fonts/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/fonts/src/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/graphics/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/graphics/badges/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/graphics/flags/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/graphics/gui/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/graphics/images/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/graphics/shaders/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/graphics/sprites/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/help/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/help/tips/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/icons/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/music/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/perserver/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/perserver/default/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/sfx/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/sfx/system/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/test/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/test/dir2/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/blacknblack/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/blackwood/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/classic/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/enchilado/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/golden-delicious/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/jewelry/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/jewelry-simple/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/mana/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/pink/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/unity/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/themes/wood/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/translations/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/data/translations/test/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/src/cmake_install.cmake C$:/msys64/home/laptop/verse/out/build/default/po/cmake_install.cmake: RERUN_CMAKE | C$:/msys64/home/laptop/verse/CMakeLists.txt C$:/msys64/home/laptop/verse/CMake/Modules/FindLibIntl.cmake C$:/msys64/home/laptop/verse/data/CMakeLists.txt C$:/msys64/home/laptop/verse/data/fonts/CMakeLists.txt C$:/msys64/home/laptop/verse/data/fonts/src/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/badges/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/flags/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/gui/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/images/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/shaders/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/sprites/CMakeLists.txt C$:/msys64/home/laptop/verse/data/help/CMakeLists.txt C$:/msys64/home/laptop/verse/data/help/idx/CMakeLists.txt C$:/msys64/home/laptop/verse/data/icons/CMakeLists.txt C$:/msys64/home/laptop/verse/data/music/CMakeLists.txt C$:/msys64/home/laptop/verse/data/perserver/CMakeLists.txt C$:/msys64/home/laptop/verse/data/perserver/default/CMakeLists.txt C$:/msys64/home/laptop/verse/data/sfx/CMakeLists.txt C$:/msys64/home/laptop/verse/data/sfx/system/CMakeLists.txt C$:/msys64/home/laptop/verse/data/test/CMakeLists.txt C$:/msys64/home/laptop/verse/data/test/dir1/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/blacknblack/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/blackwood/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/classic/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/enchilado/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/golden-delicious/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/jewelry-simple/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/jewelry/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/mana/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/pink/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/unity/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/wood/CMakeLists.txt C$:/msys64/home/laptop/verse/data/translations/CMakeLists.txt C$:/msys64/home/laptop/verse/data/translations/help/CMakeLists.txt C$:/msys64/home/laptop/verse/po/CMakeLists.txt C$:/msys64/home/laptop/verse/src/CMakeLists.txt C$:/msys64/home/laptop/verse/src/winver.h.in C$:/msys64/ucrt64/lib/cmake/CURL/CURLConfig.cmake C$:/msys64/ucrt64/lib/cmake/CURL/CURLConfigVersion.cmake C$:/msys64/ucrt64/lib/cmake/CURL/CURLTargets-release.cmake C$:/msys64/ucrt64/lib/cmake/CURL/CURLTargets.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeCInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeCXXInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeCommonLanguageInclude.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeFindDependencyMacro.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeGenericSystem.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeInitializeConfigs.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeLanguageInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeRCInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeSystemSpecificInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake C$:/msys64/ucrt64/share/cmake/Modules/CPack.cmake C$:/msys64/ucrt64/share/cmake/Modules/CPackComponent.cmake C$:/msys64/ucrt64/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/msys64/ucrt64/share/cmake/Modules/Compiler/GNU-C.cmake C$:/msys64/ucrt64/share/cmake/Modules/Compiler/GNU-CXX.cmake C$:/msys64/ucrt64/share/cmake/Modules/Compiler/GNU.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindCURL.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindGettext.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindLibXml2.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindOpenGL.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindPNG.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindPkgConfig.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindZLIB.cmake C$:/msys64/ucrt64/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/Linker/GNU-C.cmake C$:/msys64/ucrt64/share/cmake/Modules/Linker/GNU-CXX.cmake C$:/msys64/ucrt64/share/cmake/Modules/Linker/GNU.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/GNU.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/Windows-GNU-C.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/Windows-GNU-CXX.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/Windows-GNU.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-C.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-CXX.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-Initialize.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-windres.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/WindowsPaths.cmake C$:/msys64/ucrt64/share/cmake/Modules/SelectLibraryConfigurations.cmake C$:/msys64/ucrt64/share/cmake/Templates/CPackConfig.cmake.in CMakeCache.txt CMakeFiles/4.0.3/CMakeCCompiler.cmake CMakeFiles/4.0.3/CMakeCXXCompiler.cmake CMakeFiles/4.0.3/CMakeRCCompiler.cmake CMakeFiles/4.0.3/CMakeSystem.cmake
+ pool = console
+
+
+#############################################
+# A missing CMake input file is not an error.
+
+build C$:/msys64/home/laptop/verse/CMakeLists.txt C$:/msys64/home/laptop/verse/CMake/Modules/FindLibIntl.cmake C$:/msys64/home/laptop/verse/data/CMakeLists.txt C$:/msys64/home/laptop/verse/data/fonts/CMakeLists.txt C$:/msys64/home/laptop/verse/data/fonts/src/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/badges/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/flags/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/gui/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/images/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/shaders/CMakeLists.txt C$:/msys64/home/laptop/verse/data/graphics/sprites/CMakeLists.txt C$:/msys64/home/laptop/verse/data/help/CMakeLists.txt C$:/msys64/home/laptop/verse/data/help/idx/CMakeLists.txt C$:/msys64/home/laptop/verse/data/icons/CMakeLists.txt C$:/msys64/home/laptop/verse/data/music/CMakeLists.txt C$:/msys64/home/laptop/verse/data/perserver/CMakeLists.txt C$:/msys64/home/laptop/verse/data/perserver/default/CMakeLists.txt C$:/msys64/home/laptop/verse/data/sfx/CMakeLists.txt C$:/msys64/home/laptop/verse/data/sfx/system/CMakeLists.txt C$:/msys64/home/laptop/verse/data/test/CMakeLists.txt C$:/msys64/home/laptop/verse/data/test/dir1/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/blacknblack/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/blackwood/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/classic/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/enchilado/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/golden-delicious/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/jewelry-simple/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/jewelry/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/mana/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/pink/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/unity/CMakeLists.txt C$:/msys64/home/laptop/verse/data/themes/wood/CMakeLists.txt C$:/msys64/home/laptop/verse/data/translations/CMakeLists.txt C$:/msys64/home/laptop/verse/data/translations/help/CMakeLists.txt C$:/msys64/home/laptop/verse/po/CMakeLists.txt C$:/msys64/home/laptop/verse/src/CMakeLists.txt C$:/msys64/home/laptop/verse/src/winver.h.in C$:/msys64/ucrt64/lib/cmake/CURL/CURLConfig.cmake C$:/msys64/ucrt64/lib/cmake/CURL/CURLConfigVersion.cmake C$:/msys64/ucrt64/lib/cmake/CURL/CURLTargets-release.cmake C$:/msys64/ucrt64/lib/cmake/CURL/CURLTargets.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeCInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeCXXInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeCommonLanguageInclude.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeFindDependencyMacro.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeGenericSystem.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeInitializeConfigs.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeLanguageInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeRCInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeSystemSpecificInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake C$:/msys64/ucrt64/share/cmake/Modules/CPack.cmake C$:/msys64/ucrt64/share/cmake/Modules/CPackComponent.cmake C$:/msys64/ucrt64/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/msys64/ucrt64/share/cmake/Modules/Compiler/GNU-C.cmake C$:/msys64/ucrt64/share/cmake/Modules/Compiler/GNU-CXX.cmake C$:/msys64/ucrt64/share/cmake/Modules/Compiler/GNU.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindCURL.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindGettext.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindLibXml2.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindOpenGL.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindPNG.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindPackageHandleStandardArgs.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindPackageMessage.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindPkgConfig.cmake C$:/msys64/ucrt64/share/cmake/Modules/FindZLIB.cmake C$:/msys64/ucrt64/share/cmake/Modules/Internal/CMakeCLinkerInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake C$:/msys64/ucrt64/share/cmake/Modules/Linker/GNU-C.cmake C$:/msys64/ucrt64/share/cmake/Modules/Linker/GNU-CXX.cmake C$:/msys64/ucrt64/share/cmake/Modules/Linker/GNU.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/GNU.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/Windows-GNU-C.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/Windows-GNU-CXX.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Linker/Windows-GNU.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-C.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU-CXX.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-GNU.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-Initialize.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows-windres.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/Windows.cmake C$:/msys64/ucrt64/share/cmake/Modules/Platform/WindowsPaths.cmake C$:/msys64/ucrt64/share/cmake/Modules/SelectLibraryConfigurations.cmake C$:/msys64/ucrt64/share/cmake/Templates/CPackConfig.cmake.in CMakeCache.txt CMakeFiles/4.0.3/CMakeCCompiler.cmake CMakeFiles/4.0.3/CMakeCXXCompiler.cmake CMakeFiles/4.0.3/CMakeRCCompiler.cmake CMakeFiles/4.0.3/CMakeSystem.cmake: phony
+
+
+#############################################
+# Clean all the built files.
+
+build clean: CLEAN
+
+
+#############################################
+# Print all primary targets available.
+
+build help: HELP
+
+
+#############################################
+# Make the all target the default.
+
+default all
diff --git a/out/build/default/src/winver.h b/out/build/default/src/winver.h new file mode 100644 index 000000000..df28becc4 --- /dev/null +++ b/out/build/default/src/winver.h @@ -0,0 +1,27 @@ +/*
+ * The ManaPlus Client
+ * Copyright (C) 2012-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2025 The ManaVerse Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/* VERSION DEFINITIONS */
+#define VER_MAJOR 1
+#define VER_MINOR 0
+#define VER_RELEASE 0
+#define VER_BUILD 0
+#define PACKAGE_VERSION "1.0.0"
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 64c62002f..60f1fb2d1 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -22,17 +22,43 @@ FIND_PACKAGE(PNG REQUIRED) FIND_PACKAGE(Gettext REQUIRED) FIND_PACKAGE(ZLIB REQUIRED) -IF (POLICY CMP0015) - CMAKE_POLICY(SET CMP0015 OLD) -ENDIF() +#IF (POLICY CMP0015) +#CMAKE_POLICY(SET CMP0015 OLD) +#ENDIF() + +if(WIN32 OR MINGW OR MSYS) + message(STATUS "WIN32 platform detected — using adjusted flags for Windows") + + # These values are used to help the runtime locate the right folder (like "MyGame") + set(WINDOWS_DATA_FOLDER_NAME "${PROJECT_NAME}") + set(WINDOWS_LOCALE_FOLDER_NAME "locale") + + string(APPEND FLAGS + " -DPACKAGE_NAME=\\\"${PROJECT_NAME}\\\"" + " -DPACKAGE_VERSION=\\\"${VERSION}\\\"" + " -DPKG_DATADIR=\\\"${WINDOWS_DATA_FOLDER_NAME}/\\\"" + " -DLOCALEDIR=\\\"${WINDOWS_LOCALE_FOLDER_NAME}/\\\"" + ) + + string(APPEND DYE_FLAGS + " -DPACKAGE_VERSION=\\\"${VERSION}\\\" -DDYECMD" + " -DPKG_DATADIR=\\\"${WINDOWS_DATA_FOLDER_NAME}/\\\"" + " -DLOCALEDIR=\\\"${WINDOWS_LOCALE_FOLDER_NAME}/\\\"" + ) +else() + + message(STATUS "Non-Windows platform — using default flags") + + set(FLAGS "-DPACKAGE_NAME=\\\"${PROJECT_NAME}\\\"") + set(FLAGS "${FLAGS} -DPACKAGE_VERSION=\\\"${VERSION}\\\"") + set(FLAGS "${FLAGS} -DPKG_DATADIR=\\\"${PKG_DATADIR}/\\\"") + set(FLAGS "${FLAGS} -DLOCALEDIR=\\\"${LOCALEDIR}/\\\"") + + set(DYE_FLAGS "-DPACKAGE_VERSION=\\\"${VERSION}\\\" -DDYECMD") + set(DYE_FLAGS "${DYE_FLAGS} -DPKG_DATADIR=\\\"${PKG_DATADIR}/\\\"") + set(DYE_FLAGS "${DYE_FLAGS} -DLOCALEDIR=\\\"${LOCALEDIR}/\\\"") +endif() -SET(FLAGS "-DPACKAGE_NAME=\\\"${PROJECT_NAME}\\\"") -SET(FLAGS "${FLAGS} -DPACKAGE_VERSION=\\\"${VERSION}\\\"") -SET(FLAGS "${FLAGS} -DPKG_DATADIR=\\\"${PKG_DATADIR}/\\\"") -SET(FLAGS "${FLAGS} -DLOCALEDIR=\\\"${LOCALEDIR}/\\\"") -SET(DYE_FLAGS "-DPACKAGE_VERSION=\\\"${VERSION}\\\" -DDYECMD") -SET(DYE_FLAGS "${DYE_FLAGS} -DPKG_DATADIR=\\\"${PKG_DATADIR}/\\\"") -SET(DYE_FLAGS "${DYE_FLAGS} -DLOCALEDIR=\\\"${LOCALEDIR}/\\\"") IF (ENABLE_NLS) SET(FLAGS "${FLAGS} -DENABLE_NLS=1") @@ -957,8 +983,6 @@ SET(SRCS utils/gettext.h utils/gettexthelper.cpp utils/gettexthelper.h - utils/glxhelper.cpp - utils/glxhelper.h utils/gmfunctions.cpp utils/gmfunctions.h utils/intmap.h @@ -1028,8 +1052,6 @@ SET(SRCS utils/timer.cpp utils/timer.h utils/vector.h - utils/x11logger.cpp - utils/x11logger.h fs/virtfs/file.cpp fs/virtfs/file.h utils/mutex.h @@ -1287,12 +1309,6 @@ SET(SRCS render/opengl/mglemu.h render/opengl/mglfunctions.h render/opengl/mgltypes.h - render/openglx/mglx.cpp - render/openglx/mglx.h - render/openglx/mglx.hpp - render/openglx/mglxinit.cpp - render/openglx/mglxinit.h - render/openglx/mglxtypes.h render/mobileopengl2graphics.cpp render/mobileopengl2graphics.h render/mobileopenglgraphics.cpp @@ -1822,6 +1838,8 @@ SET(SRCS net/eathena/vendingrecv.h ) + + SET(DYE_CMD_SRCS gui/cliprect.cpp gui/rect.cpp @@ -1999,8 +2017,6 @@ SET(DYE_CMD_SRCS utils/timer.cpp utils/timer.h utils/vector.h - utils/x11logger.cpp - utils/x11logger.h fs/virtfs/virtfile.cpp fs/virtfs/virtfile.h utils/xml.cpp @@ -2012,6 +2028,21 @@ SET(DYE_CMD_SRCS utils/translation/podict.h ) +if(UNIX AND NOT APPLE AND NOT WIN32 AND NOT MINGW AND NOT MSYS) + list(APPEND SRCS + utils/glxhelper.cpp + utils/glxhelper.h + render/openglx/mglx.cpp + render/openglx/mglx.h + render/openglx/mglx.hpp + render/openglx/mglxinit.cpp + render/openglx/mglxinit.h + render/openglx/mglxtypes.h + utils/x11logger.cpp + utils/x11logger.h + ) +endif() + SET(SRCS_EVOL net/ea/adminhandler.cpp net/ea/adminhandler.h @@ -2212,6 +2243,7 @@ SET(SRCS_TMWA net/tmwa/vendinghandler.h gui/widgets/tabs/socialguildtab2.h ) + IF (WIN32) SET(SRCS diff --git a/src/dirs.cpp b/src/dirs.cpp index 394815a83..26344d027 100644 --- a/src/dirs.cpp +++ b/src/dirs.cpp @@ -35,10 +35,11 @@ #include "fs/virtfs/fs.h" #include "utils/base64.h" +#include "utils/stringutils.h" + #if defined(__native_client__) || (defined(ANDROID) && defined(USE_SDL2)) #include "fs/files.h" -#endif // defined(__native_client__) || (defined(ANDROID) && - // defined(USE_SDL2)) +#endif // defined(__native_client__) || (defined(ANDROID) && defined(USE_SDL2)) #include "utils/cast.h" #include "utils/gettext.h" @@ -75,6 +76,24 @@ PRAGMA48(GCC diagnostic pop) #define _nacl_dir std::string("/persistent/manaplus") #endif // defined __native_client__ +// Normalize paths to use forward slashes for cross-platform compatibility +static std::string normalizePath(const std::string &path) +{ + std::string normalized = path; + replaceAll(normalized, "\\", "/"); + return normalized; +} + +#ifdef _WIN32 +// Convert paths to use backslashes for Windows-specific functions +static std::string toWindowsPath(const std::string &path) +{ + std::string winPath = path; + replaceAll(winPath, "/", "\\"); + return winPath; +} +#endif + #ifdef ANDROID #ifdef USE_SDL2 @@ -110,8 +129,8 @@ void extractAssets() logger->log("error: APPDIR is not set!"); return; } - const std::string fileName = pathJoin(getenv("APPDIR"), - "data.zip"); + const std::string fileName = normalizePath(pathJoin(getenv("APPDIR"), + "data.zip")); logger->log("Extracting asset into: " + fileName); uint8_t *buf = new uint8_t[1000000]; @@ -139,8 +158,8 @@ void extractAssets() } fclose(file); - const std::string fileName2 = pathJoin(getenv("APPDIR"), - "locale.zip"); + const std::string fileName2 = normalizePath(pathJoin(getenv("APPDIR"), + "locale.zip")); FILE *const file2 = fopen(fileName2.c_str(), "w"); SDL_RWops *const rw = SDL_RWFromFile("manaplus-locale.zip", "r"); if (rw) @@ -164,14 +183,15 @@ void Dirs::updateDataPath() if (settings.options.dataPath.empty() && !branding.getStringValue("dataPath").empty()) { - if (isRealPath(branding.getStringValue("dataPath"))) + std::string dataPath = branding.getStringValue("dataPath"); + if (isRealPath(dataPath)) { - settings.options.dataPath = branding.getStringValue("dataPath"); + settings.options.dataPath = normalizePath(dataPath); } else { - settings.options.dataPath = pathJoin(branding.getDirectory(), - branding.getStringValue("dataPath")); + settings.options.dataPath = normalizePath( + pathJoin(branding.getDirectory(), dataPath)); } settings.options.skipUpdate = true; } @@ -184,8 +204,8 @@ void Dirs::extractDataDir() resetProgress(); extractAssets(); - const std::string zipName = pathJoin(getenv("APPDIR"), "data.zip"); - const std::string dirName = pathJoin(getenv("APPDIR"), "data"); + const std::string zipName = normalizePath(pathJoin(getenv("APPDIR"), "data.zip")); + const std::string dirName = normalizePath(pathJoin(getenv("APPDIR"), "data")); VirtFs::mountZip2(zipName, "data", Append_false); @@ -198,9 +218,9 @@ void Dirs::extractDataDir() void Dirs::mountDataDir() { - VirtFs::mountDirSilent(PKG_DATADIR "data/perserver/default", + VirtFs::mountDirSilent(normalizePath(PKG_DATADIR "data/perserver/default"), Append_false); - VirtFs::mountDirSilent("data/perserver/default", + VirtFs::mountDirSilent(normalizePath("data/perserver/default"), Append_false); #if defined __APPLE__ @@ -215,32 +235,30 @@ void Dirs::mountDataDir() fprintf(stderr, "Can't find Resources directory\n"); } CFRelease(resourcesURL); - std::string path2 = pathJoin(path, "data"); - VirtFs::mountDir(pathJoin(path2, "perserver/default"), Append_false); - VirtFs::mountDir(path2, Append_false); -// possible this need for support run client from dmg images. -// mPackageDir = path; + std::string path2 = normalizePath(pathJoin(path, "data")); + VirtFs::mountDir(normalizePath(pathJoin(path2, "perserver/default")), Append_false); + VirtFs::mountDir(normalizePath(path2), Append_false); #endif // defined __APPLE__ - VirtFs::mountDirSilent(PKG_DATADIR "data", Append_false); - setPackageDir(PKG_DATADIR "data"); - VirtFs::mountDirSilent("data", Append_false); + VirtFs::mountDirSilent(normalizePath(PKG_DATADIR "data"), Append_false); + setPackageDir(normalizePath(PKG_DATADIR "data")); + VirtFs::mountDirSilent(normalizePath("data"), Append_false); #ifdef ANDROID #ifdef USE_SDL2 if (getenv("APPDIR")) { - const std::string appDir = getenv("APPDIR"); - VirtFs::mountDir(appDir + "/data", Append_false); - VirtFs::mountDir(appDir + "/data/perserver/default", + const std::string appDir = normalizePath(getenv("APPDIR")); + VirtFs::mountDir(normalizePath(appDir + "/data"), Append_false); + VirtFs::mountDir(normalizePath(appDir + "/data/perserver/default"), Append_false); } #endif // USE_SDL2 #endif // ANDROID #if defined __native_client__ - VirtFs::mountZip("/http/data.zip", Append_false); - VirtFs::mountZip2("/http/data.zip", + VirtFs::mountZip(normalizePath("/http/data.zip"), Append_false); + VirtFs::mountZip2(normalizePath("/http/data.zip"), "perserver/default", Append_false); #endif // defined __native_client__ @@ -249,15 +267,14 @@ void Dirs::mountDataDir() // Add branding/data to VirtFS search path if (!settings.options.brandingPath.empty()) { - std::string path = settings.options.brandingPath; + std::string path = normalizePath(settings.options.brandingPath); // Strip blah.manaplus from the path const int loc = CAST_S32(path.find_last_of('/')); if (loc > 0) { - VirtFs::mountDir(path.substr( - 0, loc + 1).append("data"), + VirtFs::mountDir(normalizePath(path.substr(0, loc + 1).append("data")), Append_false); } } @@ -266,8 +283,8 @@ void Dirs::mountDataDir() void Dirs::initRootDir() { - settings.rootDir = VirtFs::getBaseDir(); - const std::string portableName = settings.rootDir + "portable.xml"; + settings.rootDir = normalizePath(VirtFs::getBaseDir()); + const std::string portableName = normalizePath(settings.rootDir + "portable.xml"); struct stat statbuf; if (stat(portableName.c_str(), &statbuf) == 0 && @@ -294,7 +311,7 @@ void Dirs::initRootDir() dir = portable.getValue("dataDir", ""); if (!dir.empty()) { - settings.options.localDataDir = settings.rootDir + dir; + settings.options.localDataDir = normalizePath(settings.rootDir + dir); logger->log("Portable data dir: %s", settings.options.localDataDir.c_str()); } @@ -305,7 +322,7 @@ void Dirs::initRootDir() dir = portable.getValue("configDir", ""); if (!dir.empty()) { - settings.options.configDir = settings.rootDir + dir; + settings.options.configDir = normalizePath(settings.rootDir + dir); logger->log("Portable config dir: %s", settings.options.configDir.c_str()); } @@ -316,7 +333,7 @@ void Dirs::initRootDir() dir = portable.getValue("screenshotDir", ""); if (!dir.empty()) { - settings.options.screenshotDir = settings.rootDir + dir; + settings.options.screenshotDir = normalizePath(settings.rootDir + dir); logger->log("Portable screenshot dir: %s", settings.options.screenshotDir.c_str()); } @@ -324,10 +341,6 @@ void Dirs::initRootDir() } } -/** - * Initializes the home directory. On UNIX and FreeBSD, ~/.mana is used. On - * Windows and other systems we use the current working directory. - */ void Dirs::initHomeDir() { initLocalDataDir(); @@ -337,142 +350,127 @@ void Dirs::initHomeDir() void Dirs::initLocalDataDir() { - settings.localDataDir = settings.options.localDataDir; + settings.localDataDir = normalizePath(settings.options.localDataDir); if (settings.localDataDir.empty()) { #ifdef __APPLE__ - // Use Application Directory instead of .mana - settings.localDataDir = pathJoin(VirtFs::getUserDir(), + settings.localDataDir = normalizePath(pathJoin(VirtFs::getUserDir(), "Library/Application Support", - branding.getValue("appName", "ManaPlus")); + branding.getValue("appName", "ManaPlus"))); #elif defined __HAIKU__ - settings.localDataDir = pathJoin(VirtFs::getUserDir(), - "config/cache/Mana"); + settings.localDataDir = normalizePath(pathJoin(VirtFs::getUserDir(), + "config/cache/Mana")); #elif defined _WIN32 - settings.localDataDir = getSpecialFolderLocation(CSIDL_LOCAL_APPDATA); + settings.localDataDir = normalizePath(getSpecialFolderLocation(CSIDL_LOCAL_APPDATA)); if (settings.localDataDir.empty()) - settings.localDataDir = VirtFs::getUserDir(); - settings.localDataDir = pathJoin(settings.localDataDir, - "Mana"); + settings.localDataDir = normalizePath(VirtFs::getUserDir()); + settings.localDataDir = normalizePath(pathJoin(settings.localDataDir, + "Mana")); #elif defined __ANDROID__ - settings.localDataDir = pathJoin(getSdStoragePath(), + settings.localDataDir = normalizePath(pathJoin(getSdStoragePath(), branding.getValue("appShort", "ManaPlus"), - "local"); + "local")); #elif defined __native_client__ - settings.localDataDir = pathJoin(_nacl_dir, "local"); + settings.localDataDir = normalizePath(pathJoin(_nacl_dir, "local")); #elif defined __SWITCH__ - settings.localDataDir = pathJoin(VirtFs::getUserDir(), "local"); -#else // __APPLE__ - - settings.localDataDir = pathJoin(VirtFs::getUserDir(), - ".local/share/mana"); -#endif // __APPLE__ + settings.localDataDir = normalizePath(pathJoin(VirtFs::getUserDir(), "local")); +#else + settings.localDataDir = normalizePath(pathJoin(VirtFs::getUserDir(), + ".local/share/mana")); +#endif } if (mkdir_r(settings.localDataDir.c_str()) != 0) { - // TRANSLATORS: directory creation error logger->error(strprintf(_("%s doesn't exist and can't be created! " "Exiting."), settings.localDataDir.c_str())); } #ifdef USE_PROFILER - Performance::init(pathJoin(settings.localDataDir, "profiler.log")); -#endif // USE_PROFILER + Performance::init(normalizePath(pathJoin(settings.localDataDir, "profiler.log"))); +#endif } void Dirs::initTempDir() { - settings.tempDir = pathJoin(settings.localDataDir, "temp"); + settings.tempDir = normalizePath(pathJoin(settings.localDataDir, "temp")); if (mkdir_r(settings.tempDir.c_str()) != 0) { - // TRANSLATORS: directory creation error logger->error(strprintf(_("%s doesn't exist and can't be created! " "Exiting."), settings.tempDir.c_str())); } -// ResourceManager::deleteFilesInDirectory(settings.tempDir); } void Dirs::initConfigDir() { - settings.configDir = settings.options.configDir; + settings.configDir = normalizePath(settings.options.configDir); if (settings.configDir.empty()) { #ifdef __APPLE__ - settings.configDir = pathJoin(settings.localDataDir, - branding.getValue("appShort", "mana")); + settings.configDir = normalizePath(pathJoin(settings.localDataDir, + branding.getValue("appShort", "mana"))); #elif defined __HAIKU__ - settings.configDir = pathJoin(VirtFs::getUserDir(), + settings.configDir = normalizePath(pathJoin(VirtFs::getUserDir(), "config/settings/Mana", - branding.getValue("appName", "ManaPlus")); + branding.getValue("appName", "ManaPlus"))); #elif defined _WIN32 - settings.configDir = getSpecialFolderLocation(CSIDL_APPDATA); + settings.configDir = normalizePath(getSpecialFolderLocation(CSIDL_APPDATA)); if (settings.configDir.empty()) { - settings.configDir = settings.localDataDir; + settings.configDir = normalizePath(settings.localDataDir); } else { - settings.configDir = pathJoin(settings.configDir, + settings.configDir = normalizePath(pathJoin(settings.configDir, "mana", - branding.getValue("appShort", "mana")); + branding.getValue("appShort", "mana"))); } #elif defined __ANDROID__ - settings.configDir = pathJoin(getSdStoragePath(), + settings.configDir = normalizePath(pathJoin(getSdStoragePath(), branding.getValue("appShort", "ManaPlus"), - "config"); + "config")); #elif defined __native_client__ - settings.configDir = pathJoin(_nacl_dir, "config"); + settings.configDir = normalizePath(pathJoin(_nacl_dir, "config")); #elif defined __SWITCH__ - settings.configDir = pathJoin(VirtFs::getUserDir(), "config"); -#else // __APPLE__ - - settings.configDir = pathJoin(VirtFs::getUserDir(), + settings.configDir = normalizePath(pathJoin(VirtFs::getUserDir(), "config")); +#else + settings.configDir = normalizePath(pathJoin(VirtFs::getUserDir(), ".config/mana", - branding.getValue("appShort", "mana")); -#endif // __APPLE__ + branding.getValue("appShort", "mana"))); +#endif logger->log("Generating config dir: " + settings.configDir); } if (mkdir_r(settings.configDir.c_str()) != 0) { - // TRANSLATORS: directory creation error logger->error(strprintf(_("%s doesn't exist and can't be created! " "Exiting."), settings.configDir.c_str())); } } -/** - * Parse the update host and determine the updates directory - * Then verify that the directory exists (creating if needed). - */ void Dirs::initUpdatesDir() { std::stringstream updates; - // If updatesHost is currently empty, fill it from config file if (settings.updateHost.empty()) settings.updateHost = config.getStringValue("updatehost"); if (!checkPath(settings.updateHost)) return; - // Don't go out of range int he next check if (settings.updateHost.length() < 2) { if (settings.updatesDir.empty()) - settings.updatesDir = pathJoin("updates", settings.serverName); + settings.updatesDir = normalizePath(pathJoin("updates", settings.serverName)); return; } const size_t sz = settings.updateHost.size(); - // Remove any trailing slash at the end of the update host if (settings.updateHost.at(sz - 1) == '/') settings.updateHost.resize(sz - 1); - // Parse out any "http://" or "https://", and set the updates directory const size_t pos = settings.updateHost.find("://"); if (pos != std::string::npos) { @@ -480,13 +478,12 @@ void Dirs::initUpdatesDir() && !settings.updateHost.empty()) { updates << "updates/" << settings.updateHost.substr(pos + 3); - settings.updatesDir = updates.str(); + settings.updatesDir = normalizePath(updates.str()); } else { logger->log("Error: Invalid update host: %s", settings.updateHost.c_str()); - // TRANSLATORS: update server initialisation error errorMessage = strprintf(_("Invalid update host: %s."), settings.updateHost.c_str()); client->setState(State::ERROR); @@ -496,46 +493,42 @@ void Dirs::initUpdatesDir() { logger->log1("Warning: no protocol was specified for the update host"); updates << "updates/" << settings.updateHost; - settings.updatesDir = updates.str(); + settings.updatesDir = normalizePath(updates.str()); } #ifdef _WIN32 if (settings.updatesDir.find(":") != std::string::npos) replaceAll(settings.updatesDir, ":", "_"); -#endif // _WIN32 +#endif - const std::string updateDir("/" + settings.updatesDir); + const std::string updateDir = normalizePath("/" + settings.updatesDir); - // Verify that the updates directory exists. Create if necessary. if (!VirtFs::isDirectory(updateDir)) { if (!VirtFs::mkdir(updateDir)) { -#if defined _WIN32 - std::string newDir = pathJoin(settings.localDataDir, - settings.updatesDir); +#ifdef _WIN32 + std::string newDir = toWindowsPath(normalizePath(pathJoin(settings.localDataDir, + settings.updatesDir))); if (!CreateDirectory(newDir.c_str(), nullptr) && GetLastError() != ERROR_ALREADY_EXISTS) { logger->log("Error: %s can't be made, but doesn't exist!", - newDir.c_str()); - // TRANSLATORS: update server initialisation error + newDir.c_str()); errorMessage = _("Error creating updates directory!"); client->setState(State::ERROR); } -#else // defined _WIN32 - +#else logger->log("Error: %s/%s can't be made, but doesn't exist!", settings.localDataDir.c_str(), settings.updatesDir.c_str()); - // TRANSLATORS: update server initialisation error errorMessage = _("Error creating updates directory!"); client->setState(State::ERROR); -#endif // defined _WIN32 +#endif } } - const std::string updateLocal = pathJoin(updateDir, "local"); - const std::string updateFix = pathJoin(updateDir, "fix"); + const std::string updateLocal = normalizePath(pathJoin(updateDir, "local")); + const std::string updateFix = normalizePath(pathJoin(updateDir, "fix")); if (!VirtFs::isDirectory(updateLocal)) VirtFs::mkdir(updateLocal); if (!VirtFs::isDirectory(updateFix)) @@ -546,11 +539,10 @@ void Dirs::initScreenshotDir() { if (!settings.options.screenshotDir.empty()) { - settings.screenshotDir = settings.options.screenshotDir; + settings.screenshotDir = normalizePath(settings.options.screenshotDir); if (mkdir_r(settings.screenshotDir.c_str()) != 0) { logger->log(strprintf( - // TRANSLATORS: directory creation error _("Error: %s doesn't exist and can't be created! " "Exiting."), settings.screenshotDir.c_str())); } @@ -558,26 +550,25 @@ void Dirs::initScreenshotDir() else if (settings.screenshotDir.empty()) { #ifdef __native_client__ - settings.screenshotDir = pathJoin(_nacl_dir, "screenshots/"); -#else // __native_client__ - settings.screenshotDir = decodeBase64String( - config.getStringValue("screenshotDirectory3")); + settings.screenshotDir = normalizePath(pathJoin(_nacl_dir, "screenshots/")); +#else + settings.screenshotDir = normalizePath(decodeBase64String( + config.getStringValue("screenshotDirectory3"))); if (settings.screenshotDir.empty()) { #ifdef __ANDROID__ - settings.screenshotDir = getSdStoragePath() - + std::string("/images"); + settings.screenshotDir = normalizePath(getSdStoragePath() + + std::string("/images")); if (mkdir_r(settings.screenshotDir.c_str())) { logger->log(strprintf( - // TRANSLATORS: directory creation error _("Error: %s doesn't exist and can't be created! " "Exiting."), settings.screenshotDir.c_str())); } -#else // ANDROID - settings.screenshotDir = getPicturesDir(); -#endif // ANDROID +#else + settings.screenshotDir = normalizePath(getPicturesDir()); +#endif if (config.getBoolValue("useScreenshotDirectorySuffix")) { const std::string configScreenshotSuffix = @@ -585,41 +576,38 @@ void Dirs::initScreenshotDir() if (!configScreenshotSuffix.empty()) { - settings.screenshotDir = pathJoin(settings.screenshotDir, - configScreenshotSuffix); + settings.screenshotDir = normalizePath(pathJoin(settings.screenshotDir, + configScreenshotSuffix)); } } config.setValue("screenshotDirectory3", encodeBase64String(settings.screenshotDir)); } -#endif // __native_client__ +#endif } logger->log("screenshotDirectory: " + settings.screenshotDir); } void Dirs::initUsersDir() { - settings.usersDir = settings.serverConfigDir + "/users/"; + settings.usersDir = normalizePath(settings.serverConfigDir + "/users/"); if (mkdir_r(settings.usersDir.c_str()) != 0) { - // TRANSLATORS: directory creation error logger->error(strprintf(_("%s doesn't exist and can't be created!"), settings.usersDir.c_str())); } - settings.npcsDir = settings.serverConfigDir + "/npcs/"; + settings.npcsDir = normalizePath(settings.serverConfigDir + "/npcs/"); if (mkdir_r(settings.npcsDir.c_str()) != 0) { - // TRANSLATORS: directory creation error logger->error(strprintf(_("%s doesn't exist and can't be created!"), settings.npcsDir.c_str())); } - settings.usersIdDir = settings.serverConfigDir + "/usersid/"; + settings.usersIdDir = normalizePath(settings.serverConfigDir + "/usersid/"); if (mkdir_r(settings.usersIdDir.c_str()) != 0) { - // TRANSLATORS: directory creation error logger->error(strprintf(_("%s doesn't exist and can't be created!"), settings.usersIdDir.c_str())); } -} +}
\ No newline at end of file diff --git a/src/gui/palette.cpp b/src/gui/palette.cpp index c98a9416e..bdd01266d 100644 --- a/src/gui/palette.cpp +++ b/src/gui/palette.cpp @@ -1,200 +1,200 @@ -/* - * The ManaVerse Client - * Copyright (C) 2008 Douglas Boffey <dougaboffey@netscape.net> - * Copyright (C) 2009 The Mana World Development Team - * Copyright (C) 2009-2010 The Mana Developers - * Copyright (C) 2011-2020 The ManaPlus Developers - * Copyright (C) 2020-2025 The ManaVerse Developers - * - * This file is part of The ManaVerse Client. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#include "gui/palette.h" - -#include "utils/foreach.h" -#include "utils/timer.h" - -#ifndef USE_SDL2 -#include <cmath> -#endif // USE_SDL2 - -#include "debug.h" - -const Color Palette::BLACK = Color(0, 0, 0, 255); -Palette::Palettes Palette::mInstances; - -const Color Palette::RAINBOW_COLORS[7] = -{ - Color(255, 0, 0, 255), - Color(255, 153, 0, 255), - Color(255, 255, 0, 255), - Color(0, 153, 0, 255), - Color(0, 204, 204, 255), - Color(51, 0, 153, 255), - Color(153, 0, 153, 255) -}; - -const int Palette::RAINBOW_COLOR_COUNT = 7; - -Palette::Palette(const int size) : - mRainbowTime(tick_time), - mColors(Colors(size)), - mCharColors(), - mGradVector() -{ - mInstances.insert(this); -} - -Palette::~Palette() -{ - mInstances.erase(this); -} - -const Color& Palette::getCharColor(const signed char c, bool &valid) const -{ - const CharColors::const_iterator it = mCharColors.find(c); - if (it != mCharColors.end()) - { - valid = true; - return mColors[(*it).second].color; - } - - valid = false; - return BLACK; -} - -void Palette::advanceGradients() -{ - FOR_EACH (Palettes::const_iterator, it, mInstances) - (*it)->advanceGradient(); -} - -void Palette::advanceGradient() -{ - const int time = get_elapsed_time(mRainbowTime); - if (time > 5) - { - // For slower systems, advance can be greater than one (advance > 1 - // skips advance-1 steps). Should make gradient look the same - // independent of the framerate. - const int advance = time / 5; - - for (size_t i = 0, sz = mGradVector.size(); i < sz; i++) - { - ColorElem *const elem A_NONNULLPOINTER = mGradVector[i]; - if (elem == nullptr) - continue; - - int delay = elem->delay; - const GradientTypeT &grad = elem->grad; - - if (grad == GradientType::PULSE) - delay = delay / 20; - - const int numOfColors = (elem->grad == GradientType::SPECTRUM ? 6 : - grad == GradientType::PULSE ? 127 : - RAINBOW_COLOR_COUNT); - - elem->gradientIndex = (elem->gradientIndex + advance) - % (delay * numOfColors); - - const int gradIndex = elem->gradientIndex; - const int pos = delay != 0 ? (gradIndex % delay) : gradIndex; - int colIndex; - if (delay != 0) - colIndex = gradIndex / delay; - else - colIndex = gradIndex; - - Color &color = elem->color; - int colVal; - - if (grad == GradientType::PULSE) - { - colVal = CAST_S32(255.0 * - sin(M_PI * colIndex / numOfColors)); - - const Color &col = elem->testColor; - - color.r = ((colVal * col.r) / 255) % (col.r + 1); - color.g = ((colVal * col.g) / 255) % (col.g + 1); - color.b = ((colVal * col.b) / 255) % (col.b + 1); - } - else if (grad == GradientType::SPECTRUM) - { - if ((colIndex % 2) != 0) - { // falling curve - if (delay != 0) - { - colVal = CAST_S32(255.0 * - (cos(M_PI * pos / delay) + 1) / 2); - } - else - { - colVal = CAST_S32(255.0 * - (cos(M_PI * pos) + 1) / 2); - } - } - else - { // ascending curve - if (delay != 0) - { - colVal = CAST_S32(255.0 * (cos(M_PI * - (delay - pos) / delay) + 1) / 2); - } - else - { - colVal = CAST_S32(255.0 * (cos(M_PI * - (delay - pos)) + 1) / 2); - } - } - - color.r = (colIndex == 0 || colIndex == 5) ? 255 : - (colIndex == 1 || colIndex == 4) ? colVal : 0; - color.g = (colIndex == 1 || colIndex == 2) ? 255 : - (colIndex == 0 || colIndex == 3) ? colVal : 0; - color.b = (colIndex == 3 || colIndex == 4) ? 255 : - (colIndex == 2 || colIndex == 5) ? colVal : 0; - } - else if (elem->grad == GradientType::RAINBOW) - { - const Color &startCol = RAINBOW_COLORS[colIndex]; - const Color &destCol - = RAINBOW_COLORS[(colIndex + 1) % numOfColors]; - double startColVal; - double destColVal; - - if (delay != 0) - startColVal = (cos(M_PI * pos / delay) + 1) / 2; - else - startColVal = 0; - - destColVal = 1 - startColVal; - - color.r = CAST_S32(startColVal - * startCol.r + destColVal * destCol.r); - - color.g = CAST_S32(startColVal - * startCol.g + destColVal * destCol.g); - - color.b = CAST_S32(startColVal - * startCol.b + destColVal * destCol.b); - } - } - - mRainbowTime = tick_time; - } -} +/*
+ * The ManaVerse Client
+ * Copyright (C) 2008 Douglas Boffey <dougaboffey@netscape.net>
+ * Copyright (C) 2009 The Mana World Development Team
+ * Copyright (C) 2009-2010 The Mana Developers
+ * Copyright (C) 2011-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2025 The ManaVerse Developers
+ *
+ * This file is part of The ManaVerse Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "gui/palette.h"
+
+#include "utils/foreach.h"
+#include "utils/timer.h"
+
+#ifndef USE_SDL2
+#include <cmath>
+#endif // USE_SDL2
+
+#include "debug.h"
+
+const Color Palette::BLACK = Color(0, 0, 0, 255);
+Palette::Palettes Palette::mInstances;
+
+const Color Palette::RAINBOW_COLORS[7] =
+{
+ Color(255, 0, 0, 255),
+ Color(255, 153, 0, 255),
+ Color(255, 255, 0, 255),
+ Color(0, 153, 0, 255),
+ Color(0, 204, 204, 255),
+ Color(51, 0, 153, 255),
+ Color(153, 0, 153, 255)
+};
+
+const int Palette::RAINBOW_COLOR_COUNT = 7;
+
+Palette::Palette(const int size) :
+ mRainbowTime(tick_time),
+ mColors(Colors(size)),
+ mCharColors(),
+ mGradVector()
+{
+ mInstances.insert(this);
+}
+
+Palette::~Palette()
+{
+ mInstances.erase(this);
+}
+
+const Color& Palette::getCharColor(const signed char c, bool &valid) const
+{
+ const CharColors::const_iterator it = mCharColors.find(c);
+ if (it != mCharColors.end())
+ {
+ valid = true;
+ return mColors[(*it).second].color;
+ }
+
+ valid = false;
+ return BLACK;
+}
+
+void Palette::advanceGradients()
+{
+ FOR_EACH (Palettes::const_iterator, it, mInstances)
+ (*it)->advanceGradient();
+}
+
+void Palette::advanceGradient()
+{
+ const int time = get_elapsed_time(mRainbowTime);
+ if (time > 5)
+ {
+ // For slower systems, advance can be greater than one (advance > 1
+ // skips advance-1 steps). Should make gradient look the same
+ // independent of the framerate.
+ const int advance = time / 5;
+
+ for (size_t i = 0, sz = mGradVector.size(); i < sz; i++)
+ {
+ ColorElem *const elem A_NONNULLPOINTER = mGradVector[i];
+ if (elem == nullptr)
+ continue;
+
+ int delay = elem->delay;
+ const GradientTypeT &grad = elem->grad;
+
+ if (grad == GradientType::PULSE)
+ delay = delay / 20;
+
+ const int numOfColors = (elem->grad == GradientType::SPECTRUM ? 6 :
+ grad == GradientType::PULSE ? 127 :
+ RAINBOW_COLOR_COUNT);
+
+ elem->gradientIndex = (elem->gradientIndex + advance)
+ % (delay * numOfColors);
+
+ const int gradIndex = elem->gradientIndex;
+ const int pos = delay != 0 ? (gradIndex % delay) : gradIndex;
+ int colIndex;
+ if (delay != 0)
+ colIndex = gradIndex / delay;
+ else
+ colIndex = gradIndex;
+
+ Color &color = elem->color;
+ int colVal;
+
+ if (grad == GradientType::PULSE)
+ {
+ colVal = CAST_S32(255.0 *
+ sin(M_PI * colIndex / numOfColors));
+
+ const Color &col = elem->testColor;
+
+ color.r = ((colVal * col.r) / 255) % (col.r + 1);
+ color.g = ((colVal * col.g) / 255) % (col.g + 1);
+ color.b = ((colVal * col.b) / 255) % (col.b + 1);
+ }
+ else if (grad == GradientType::SPECTRUM)
+ {
+ if ((colIndex % 2) != 0)
+ { // falling curve
+ if (delay != 0)
+ {
+ colVal = CAST_S32(255.0 *
+ (cos(M_PI * pos / delay) + 1) / 2);
+ }
+ else
+ {
+ colVal = CAST_S32(255.0 *
+ (cos(M_PI * pos) + 1) / 2);
+ }
+ }
+ else
+ { // ascending curve
+ if (delay != 0)
+ {
+ colVal = CAST_S32(255.0 * (cos(M_PI *
+ (delay - pos) / delay) + 1) / 2);
+ }
+ else
+ {
+ colVal = CAST_S32(255.0 * (cos(M_PI *
+ (delay - pos)) + 1) / 2);
+ }
+ }
+
+ color.r = (colIndex == 0 || colIndex == 5) ? 255 :
+ (colIndex == 1 || colIndex == 4) ? colVal : 0;
+ color.g = (colIndex == 1 || colIndex == 2) ? 255 :
+ (colIndex == 0 || colIndex == 3) ? colVal : 0;
+ color.b = (colIndex == 3 || colIndex == 4) ? 255 :
+ (colIndex == 2 || colIndex == 5) ? colVal : 0;
+ }
+ else if (elem->grad == GradientType::RAINBOW)
+ {
+ const Color &startCol = RAINBOW_COLORS[colIndex];
+ const Color &destCol
+ = RAINBOW_COLORS[(colIndex + 1) % numOfColors];
+ double startColVal;
+ double destColVal;
+
+ if (delay != 0)
+ startColVal = (cos(M_PI * pos / delay) + 1) / 2;
+ else
+ startColVal = 0;
+
+ destColVal = 1 - startColVal;
+
+ color.r = CAST_S32(startColVal
+ * startCol.r + destColVal * destCol.r);
+
+ color.g = CAST_S32(startColVal
+ * startCol.g + destColVal * destCol.g);
+
+ color.b = CAST_S32(startColVal
+ * startCol.b + destColVal * destCol.b);
+ }
+ }
+
+ mRainbowTime = tick_time;
+ }
+}
diff --git a/src/manaplus.rc b/src/manaplus.rc index b9b0d9e57..c5fecb99f 100644 --- a/src/manaplus.rc +++ b/src/manaplus.rc @@ -1,24 +1,33 @@ -#include <windows.h> // include for version info constants - +#include <windows.h> #include "winver.h" A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "../data/icons/manaplus.ico" tmw ICON MOVEABLE PURE LOADONCALL DISCARDABLE "../data/tmw/icons/tmw-client.ico" 1 VERSIONINFO -FILEVERSION VER_MAJOR,VER_MINOR,VER_RELEASE,VER_BUILD -PRODUCTVERSION VER_MAJOR,VER_MINOR,VER_RELEASE,VER_BUILD -//FILETYPE VFT_APP -{ - BLOCK "StringFileInfo" { - BLOCK "040904E4" { - VALUE "CompanyName", "The ManaPlus Development Team" - VALUE "FileVersion", PACKAGE_VERSION "4144" - VALUE "FileDescription", "ManaPlus" - VALUE "LegalCopyright", "2004-2014 (C)" - VALUE "OriginalFilename", "manaplus.exe" - VALUE "ProductName", "ManaPlus MMORPG Client" - VALUE "ProductVersion", PACKAGE_VERSION "4144" - } - } -} +FILEVERSION 1,0,0,0 +PRODUCTVERSION 1,0,0,0 +FILEFLAGSMASK 0x3FL +FILEFLAGS 0x0L +FILEOS 0x4L +FILETYPE 0x1L +FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904E4" + BEGIN + VALUE "CompanyName", "The ManaPlus Development Team\0" + VALUE "FileVersion", "1.0.0.4144\0" + VALUE "FileDescription", "ManaPlus\0" + VALUE "LegalCopyright", "2004-2014 (C)\0" + VALUE "OriginalFilename", "manaplus.exe\0" + VALUE "ProductName", "ManaPlus MMORPG Client\0" + VALUE "ProductVersion", "1.0.0.4144\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0409, 1252 + END +END diff --git a/src/net/tmwa/npcrecv.cpp b/src/net/tmwa/npcrecv.cpp new file mode 100644 index 000000000..8b17afb3a --- /dev/null +++ b/src/net/tmwa/npcrecv.cpp @@ -0,0 +1,139 @@ +/* + * The ManaVerse Client + * Copyright (C) 2011-2020 The ManaPlus Developers + * Copyright (C) 2020-2025 The ManaVerse Developers + * + * This file is part of The ManaVerse Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "net/eathena/npcrecv.h" + +#include "actormanager.h" + +#include "being/being.h" + +#include "gui/windows/cutinwindow.h" +#include "gui/windows/npcdialog.h" + +#include "net/messagein.h" +#include "net/npchandler.h" + +#include "net/ea/npcrecv.h" + +#include "debug.h" + +namespace EAthena +{ + +namespace NpcRecv +{ + BeingTypeId mNpcTypeId = BeingTypeId_zero; +} // namespace NpcRecv + +void NpcRecv::processNpcCutin(Net::MessageIn &msg) +{ + Ea::NpcRecv::mRequestLang = false; + const std::string image = msg.readString(64, "image name"); + const CutInT cutin = static_cast<CutInT>(msg.readUInt8("type")); + if (cutInWindow != nullptr) + cutInWindow->show(image, cutin); +} + +void NpcRecv::processNpcViewPoint(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + Ea::NpcRecv::mRequestLang = false; + // +++ probably need add nav point and start moving to it + msg.readInt32("npc id"); + msg.readInt32("type"); // 0 display for 15 sec, + // 1 display until teleport, + // 2 remove + msg.readInt32("x"); + msg.readInt32("y"); + msg.readUInt8("number"); // can be used for scripts + msg.readInt32("color"); +} + +void NpcRecv::processNpcShowProgressBar(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + Ea::NpcRecv::mRequestLang = false; + // +++ probably need show progress bar in npc dialog + msg.readInt32("color"); + msg.readInt32("seconds"); +} + +void NpcRecv::processShowProgressBarFree(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + Ea::NpcRecv::mRequestLang = false; + msg.readBeingId("account id"); + msg.readInt32("color"); + msg.readInt32("time"); +} + +void NpcRecv::processNpcCloseTimeout(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + Ea::NpcRecv::mRequestLang = false; + // this packet send after npc closed by timeout. + msg.readInt32("npc id"); +} + +void NpcRecv::processArea(Net::MessageIn &msg) +{ + if (actorManager == nullptr) + return; + const int len = msg.readInt16("len"); + if (len < 12) + return; + Being *const dstBeing = actorManager->findBeing( + msg.readBeingId("npc id")); + const int area = msg.readInt32("area size"); + if (dstBeing != nullptr) + dstBeing->setAreaSize(area); +} + +void NpcRecv::processShowDigit(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + + msg.readUInt8("type"); + msg.readInt32("value"); +} + +void NpcRecv::processProgressBarAbort(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; +} + +void NpcRecv::processNpcSkin(Net::MessageIn &msg) +{ + const int len = msg.readInt16("len"); + npcHandler->getNpc(msg, NpcAction::Other); + + const std::string skin = msg.readString(len - 8, "skin"); + if (Ea::NpcRecv::mDialog != nullptr) + Ea::NpcRecv::mDialog->setSkin(skin); +} + +void NpcRecv::processPrivateAirShipResponse(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + msg.readUInt32("flag"); +} + +} // namespace EAthena diff --git a/src/net/tmwa/npcrecv.h b/src/net/tmwa/npcrecv.h new file mode 100644 index 000000000..0e8bda8f0 --- /dev/null +++ b/src/net/tmwa/npcrecv.h @@ -0,0 +1,51 @@ +/* + * The ManaVerse Client + * Copyright (C) 2011-2020 The ManaPlus Developers + * Copyright (C) 2020-2025 The ManaVerse Developers + * + * This file is part of The ManaVerse Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef NET_EATHENA_NPCRECV_H +#define NET_EATHENA_NPCRECV_H + +#include "enums/simpletypes/beingtypeid.h" + +namespace Net +{ + class MessageIn; +} // namespace Net + +namespace EAthena +{ + namespace NpcRecv + { + extern BeingTypeId mNpcTypeId; + + void processNpcCutin(Net::MessageIn &msg); + void processNpcViewPoint(Net::MessageIn &msg); + void processNpcShowProgressBar(Net::MessageIn &msg); + void processNpcCloseTimeout(Net::MessageIn &msg); + void processArea(Net::MessageIn &msg); + void processShowDigit(Net::MessageIn &msg); + void processProgressBarAbort(Net::MessageIn &msg); + void processShowProgressBarFree(Net::MessageIn &msg); + void processNpcSkin(Net::MessageIn &msg); + void processPrivateAirShipResponse(Net::MessageIn &msg); + } // namespace NpcRecv +} // namespace EAthena + +#endif // NET_EATHENA_NPCRECV_H diff --git a/src/particle/particleemitterprop.h b/src/particle/particleemitterprop.h index d82f188ac..c49667b31 100644 --- a/src/particle/particleemitterprop.h +++ b/src/particle/particleemitterprop.h @@ -1,128 +1,128 @@ -/* - * The ManaVerse Client - * Copyright (C) 2006-2009 The Mana World Development Team - * Copyright (C) 2009-2010 The Mana Developers - * Copyright (C) 2011-2020 The ManaPlus Developers - * Copyright (C) 2020-2025 The ManaVerse Developers - * - * This file is part of The ManaVerse Client. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -#ifndef PARTICLE_PARTICLEEMITTERPROP_H -#define PARTICLE_PARTICLEEMITTERPROP_H - -#include <cmath> - -#include "enums/particle/particlechangefunc.h" - -#include "localconsts.h" - -template <typename T> struct ParticleEmitterProp final -{ - ParticleEmitterProp() : - minVal(0), - maxVal(0), - changeFunc(ParticleChangeFunc::FUNC_NONE), - changeAmplitude(0), - changePeriod(0), - changePhase(0) - { - } - - A_DEFAULT_COPY(ParticleEmitterProp) - - void set(const T min, const T max) - { - minVal = min; - maxVal = max; - } - - void set(const T val) - { - set(val, val); - } - - void setFunction(ParticleChangeFuncT func, - T amplitude, - const int period, - const int phase) - { - changeFunc = func; - changeAmplitude = amplitude; - changePeriod = period; - if (changePeriod == 0) - changePeriod = 1; - changePhase = phase; - } - - T value(int tick) const - { - tick += changePhase; - T val = static_cast<T>(minVal + (maxVal - minVal) - * (rand() / (static_cast<double>(RAND_MAX) + 1))); - - switch (changeFunc) - { - case ParticleChangeFunc::FUNC_SINE: - val += static_cast<T>(std::sin(M_PI * 2 * (static_cast<double>( - tick % changePeriod) / static_cast<double>( - changePeriod)))) * changeAmplitude; - break; - case ParticleChangeFunc::FUNC_SAW: - val += static_cast<T>(changeAmplitude * (static_cast<double>( - tick % changePeriod) / static_cast<double>( - changePeriod))) * 2 - changeAmplitude; - break; - case ParticleChangeFunc::FUNC_TRIANGLE: - if ((tick % changePeriod) * 2 < changePeriod) - { - val += changeAmplitude - static_cast<T>(( - tick % changePeriod) / static_cast<double>( - changePeriod)) * changeAmplitude * 4; - } - else - { - val += changeAmplitude * -3 + static_cast<T>(( - tick % changePeriod) / static_cast<double>( - changePeriod)) * changeAmplitude * 4; - // I have no idea why this works but it does - } - break; - case ParticleChangeFunc::FUNC_SQUARE: - if ((tick % changePeriod) * 2 < changePeriod) - val += changeAmplitude; - else - val -= changeAmplitude; - break; - case ParticleChangeFunc::FUNC_NONE: - default: - // nothing - break; - } - - return val; - } - - T minVal; - T maxVal; - - ParticleChangeFuncT changeFunc; - T changeAmplitude; - int changePeriod; - int changePhase; -}; - -#endif // PARTICLE_PARTICLEEMITTERPROP_H +/*
+ * The ManaVerse Client
+ * Copyright (C) 2006-2009 The Mana World Development Team
+ * Copyright (C) 2009-2010 The Mana Developers
+ * Copyright (C) 2011-2020 The ManaPlus Developers
+ * Copyright (C) 2020-2025 The ManaVerse Developers
+ *
+ * This file is part of The ManaVerse Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef PARTICLE_PARTICLEEMITTERPROP_H
+#define PARTICLE_PARTICLEEMITTERPROP_H
+
+#include <cmath>
+
+#include "enums/particle/particlechangefunc.h"
+
+#include "localconsts.h"
+
+template <typename T> struct ParticleEmitterProp final
+{
+ ParticleEmitterProp() :
+ minVal(0),
+ maxVal(0),
+ changeFunc(ParticleChangeFunc::FUNC_NONE),
+ changeAmplitude(0),
+ changePeriod(0),
+ changePhase(0)
+ {
+ }
+
+ A_DEFAULT_COPY(ParticleEmitterProp)
+
+ void set(const T min, const T max)
+ {
+ minVal = min;
+ maxVal = max;
+ }
+
+ void set(const T val)
+ {
+ set(val, val);
+ }
+
+ void setFunction(ParticleChangeFuncT func,
+ T amplitude,
+ const int period,
+ const int phase)
+ {
+ changeFunc = func;
+ changeAmplitude = amplitude;
+ changePeriod = period;
+ if (changePeriod == 0)
+ changePeriod = 1;
+ changePhase = phase;
+ }
+
+ T value(int tick) const
+ {
+ tick += changePhase;
+ T val = static_cast<T>(minVal + (maxVal - minVal)
+ * (rand() / (static_cast<double>(RAND_MAX) + 1)));
+
+ switch (changeFunc)
+ {
+ case ParticleChangeFunc::FUNC_SINE:
+ val += static_cast<T>(std::sin(M_PI * 2 * (static_cast<double>(
+ tick % changePeriod) / static_cast<double>(
+ changePeriod)))) * changeAmplitude;
+ break;
+ case ParticleChangeFunc::FUNC_SAW:
+ val += static_cast<T>(changeAmplitude * (static_cast<double>(
+ tick % changePeriod) / static_cast<double>(
+ changePeriod))) * 2 - changeAmplitude;
+ break;
+ case ParticleChangeFunc::FUNC_TRIANGLE:
+ if ((tick % changePeriod) * 2 < changePeriod)
+ {
+ val += changeAmplitude - static_cast<T>((
+ tick % changePeriod) / static_cast<double>(
+ changePeriod)) * changeAmplitude * 4;
+ }
+ else
+ {
+ val += changeAmplitude * -3 + static_cast<T>((
+ tick % changePeriod) / static_cast<double>(
+ changePeriod)) * changeAmplitude * 4;
+ // I have no idea why this works but it does
+ }
+ break;
+ case ParticleChangeFunc::FUNC_SQUARE:
+ if ((tick % changePeriod) * 2 < changePeriod)
+ val += changeAmplitude;
+ else
+ val -= changeAmplitude;
+ break;
+ case ParticleChangeFunc::FUNC_NONE:
+ default:
+ // nothing
+ break;
+ }
+
+ return val;
+ }
+
+ T minVal;
+ T maxVal;
+
+ ParticleChangeFuncT changeFunc;
+ T changeAmplitude;
+ int changePeriod;
+ int changePhase;
+};
+
+#endif // PARTICLE_PARTICLEEMITTERPROP_H
diff --git a/src/render/mgltypes.h b/src/render/mgltypes.h new file mode 100644 index 000000000..10c5a0540 --- /dev/null +++ b/src/render/mgltypes.h @@ -0,0 +1,241 @@ +/* + * The ManaVerse Client + * Copyright (C) 2012-2020 The ManaPlus Developers + * Copyright (C) 2020-2025 The ManaVerse Developers + * + * This file is part of The ManaVerse Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef RENDER_OPENGL_MGLTYPES_H +#define RENDER_OPENGL_MGLTYPES_H + +#ifdef USE_OPENGL + +#ifdef ANDROID +#include <GLES/gl.h> +#include <GLES/glext.h> +#define APIENTRY GL_APIENTRY +#else // ANDROID +#include "localconsts.h" +#ifndef USE_SDL2 +#define GL_GLEXT_PROTOTYPES 1 +#endif // USE_SDL2 +#ifdef HAVE_GLEXT +#define NO_SDL_GLEXT +#endif // HAVE_GLEXT +PRAGMA48(GCC diagnostic push) +PRAGMA48(GCC diagnostic ignored "-Wshadow") +// ignore -Wredundant-decls for SDL 1.2 +PRAGMA45(GCC diagnostic push) +PRAGMA45(GCC diagnostic ignored "-Wredundant-decls") +#include <SDL_opengl.h> +PRAGMA45(GCC diagnostic pop) +PRAGMA48(GCC diagnostic pop) +#ifdef HAVE_GLEXT +PRAGMA45(GCC diagnostic push) +PRAGMA45(GCC diagnostic ignored "-Wredundant-decls") +#include <GL/glext.h> +PRAGMA45(GCC diagnostic pop) +#endif // HAVE_GLEXT +#ifdef __native_client__ +#include <GL/Regal.h> +#else // __native_client__ +#if defined(__APPLE__) +#include <OpenGL/glext.h> +#else // defined(__APPLE__) +#ifndef __glext_h_ +// probably this include need for some os / libs +PRAGMA45(GCC diagnostic push) +PRAGMA45(GCC diagnostic ignored "-Wredundant-decls") +#include <GL/glext.h> +PRAGMA45(GCC diagnostic pop) +// #error missing include <GL/glext.h> +#endif // __glext_h_ +#endif // defined(__APPLE__) +#endif // __native_client__ +#endif // ANDROID + +#include "render/opengl/mgldefines.h" +RENDER_OPENGL_MGLDEFINES_H + +#ifndef USE_SDL2 +#include <stdint.h> // see commit's discussion +#endif // USE_SDL2 + +typedef void (APIENTRY *glGenRenderbuffers_t)(GLsizei, GLuint *); +typedef void (APIENTRY *glBindRenderbuffer_t)(GLenum target, + GLuint renderbuffer); +typedef void (APIENTRY *glRenderbufferStorage_t)(GLenum target, + GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRY *glGenFramebuffers_t)(GLsizei n, GLuint *framebuffers); +typedef void (APIENTRY *glBindFramebuffer_t)(GLenum target, + GLuint framebuffer); +typedef void (APIENTRY *glFramebufferTexture2D_t)(GLenum target, + GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (APIENTRY *glFramebufferRenderbuffer_t)(GLenum target, + GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRY *glDeleteFramebuffers_t) (GLsizei, const GLuint *); +typedef void (APIENTRY *glDeleteRenderbuffers_t) (GLsizei, const GLuint *); +typedef const GLubyte *(APIENTRY *glGetStringi_t) (GLenum, GLuint); +typedef void (APIENTRY *glGenSamplers_t) (GLsizei count, GLuint *samplers); +typedef void (APIENTRY *glDeleteSamplers_t) + (GLsizei count, const GLuint * samplers); +typedef void (APIENTRY *glBindSampler_t) (GLuint unit, GLuint sampler); +typedef void (APIENTRY *glSamplerParameteri_t) + (GLuint sampler, GLenum pname, GLint param); +typedef void (APIENTRY *glDebugMessageControl_t) (GLenum source, GLenum type, + GLenum severity, GLsizei count, const GLuint* ids, GLboolean enabled); +typedef void (APIENTRY *glFrameTerminator_t) (void); +typedef void (APIENTRY *glLabelObject_t) (GLenum type, GLuint object, + GLsizei length, const GLchar *label); +typedef void (APIENTRY *glGetObjectLabel_t) (GLenum type, GLuint object, + GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (APIENTRY *glInsertEventMarker_t) + (GLsizei length, const char *marker); +typedef void (APIENTRY *glPushGroupMarker_t) + (GLsizei length, const char *marker); +typedef void (APIENTRY *glPopGroupMarker_t) (void); +typedef void (APIENTRY *glGenVertexArrays_t) (GLsizei n, GLuint *arrays); +typedef void (APIENTRY *glBindVertexArray_t) (GLuint array); +typedef void (APIENTRY *glDeleteVertexArrays_t) (GLsizei n, GLuint *arrays); +typedef void (APIENTRY *glDisableVertexAttribArray_t) (GLuint index); +typedef void (APIENTRY *glDeleteShader_t) (GLenum shader); +typedef void (APIENTRY *glGetShaderInfoLog_t) (GLuint shader, + GLsizei maxLength, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRY *glGetShaderSource_t) (GLuint shader, + GLsizei bufSize, GLsizei *length, GLchar *source); +typedef void (APIENTRY *glDetachShader_t) (GLuint program, GLuint shader); +typedef void (APIENTRY *glGetAttachedShaders_t) (GLuint program, + GLsizei maxCount, GLsizei *count, GLuint *shaders); +typedef void (APIENTRY *glGetActiveUniform_t) (GLuint program, GLuint index, + GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef GLint (APIENTRY *glBindFragDataLocation_t) (GLuint program, + GLuint colorNumber, const char *name); +#ifndef __native_client__ +typedef void (APIENTRY *glDeleteProgram_t) (GLuint program); +typedef GLuint (APIENTRY *glCreateProgram_t) (void); +typedef void (APIENTRY *glGetProgramiv_t) (GLuint program, + GLenum pname, GLint *params); +typedef void (APIENTRY *glLinkProgram_t) (GLuint program); +typedef void (APIENTRY *glAttachShader_t) (GLuint program, GLuint shader); +typedef void (APIENTRY *glGetShaderiv_t) (GLuint shader, + GLenum pname, GLint *params); +typedef void (APIENTRY *glCompileShader_t) (GLuint shader); +typedef void (APIENTRY *glShaderSource_t) (GLuint shader, + GLsizei count, const GLchar **string, const GLint *length); +typedef GLuint (APIENTRY *glCreateShader_t) (GLenum shaderType); +typedef GLint (APIENTRY *glGetUniformLocation_t) (GLuint program, + const GLchar *name); +typedef void (APIENTRY *glGenBuffers_t) (GLsizei n, GLuint *buffers); +typedef void (APIENTRY *glDeleteBuffers_t) (GLsizei n, GLuint *buffers); +typedef void (APIENTRY *glBindBuffer_t) (GLenum target, GLuint buffer); +typedef void (APIENTRY *glBufferData_t) (GLenum target, GLsizeiptr size, + const GLvoid *data, GLenum usage); +typedef void (APIENTRY *glEnableVertexAttribArray_t) (GLuint index); +typedef void (APIENTRY *glVertexAttribPointer_t) (GLuint index, GLint size, + GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer); +typedef void (APIENTRY *glUseProgram_t) (GLuint program); +typedef void (APIENTRY *glUniform1f_t) (GLint location, GLfloat v0); +typedef void (APIENTRY *glUniform2f_t) (GLint location, + GLfloat v0, GLfloat v1); +typedef void (APIENTRY *glUniform4f_t) (GLint location, + GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRY *glValidateProgram_t) (GLuint program); +typedef void (APIENTRY *glGetProgramInfoLog_t) (GLuint program, + GLsizei maxLength, GLsizei *length, GLchar *infoLog); +typedef void (APIENTRY *glBindAttribLocation_t) (GLuint program, + GLuint index, const GLchar *name); +typedef void (APIENTRY *glActiveTexture_t) (GLenum texture); +#endif // __native_client__ + +typedef GLint (APIENTRY *glGetAttribLocation_t) (GLuint program, + const GLchar *name); +typedef void (APIENTRY *glUniform3f_t) (GLint location, + GLfloat v0, GLfloat v1, GLfloat v2); +typedef GLenum (APIENTRY *glCheckFramebufferStatus_t) (GLenum target); +typedef void (APIENTRY *glProgramUniform1f_t) (GLuint program, + GLint location, GLfloat v0); +typedef void (APIENTRY *glProgramUniform2f_t) (GLuint program, + GLint location, GLfloat v0, GLfloat v1); +typedef void (APIENTRY *glProgramUniform3f_t) (GLuint program, + GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (APIENTRY *glProgramUniform4f_t) (GLuint program, + GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (APIENTRY *glBindVertexBuffer_t) (GLuint bindingindex, + GLuint buffer, GLintptr offset, GLintptr stride); +typedef void (APIENTRY *glVertexAttribBinding_t) (GLuint attribindex, + GLuint bindingindex); +typedef void (APIENTRY *glVertexAttribFormat_t) (GLuint attribindex, + GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRY *glBindVertexBuffers_t) (GLuint first, GLsizei count, + const GLuint *buffers, const GLuint *offsets, const GLsizei *strides); +typedef GLboolean (APIENTRY *glIsBuffer_t) (GLuint buffer); +typedef void (APIENTRY *glVertexAttribIFormat_t) (GLuint attribindex, + GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRY *glVertexAttribIPointer_t) (GLuint index, GLint size, + GLenum type, GLsizei stride, const GLvoid * pointer); +typedef void (APIENTRY *glInvalidateTexImage_t) (GLuint texture, GLint level); +typedef void (APIENTRY *glCopyImageSubData_t) (GLuint srcName, + GLenum srcTarget, GLint srcLevel, + GLint srcX, GLint srcY, GLint srcZ, + GLuint dstName, GLenum dstTarget, GLint dstLevel, + GLint dstX, GLint dstY, GLint dstZ, + GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +typedef void (APIENTRY *glPushDebugGroup_t) (GLenum source, GLuint id, + GLsizei length, const GLchar * message); +typedef void (APIENTRY *glPopDebugGroup_t) (void); +typedef void (APIENTRY *glObjectLabel_t) (GLenum identifier, GLuint name, + GLsizei length, const GLchar *label); +typedef void (APIENTRY *glTexStorage2D_t) (GLenum target, GLsizei levels, + GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRY *glGenQueries_t) (GLsizei n, GLuint *ids); +typedef void (APIENTRY *glBeginQuery_t) (GLenum target, GLuint id); +typedef void (APIENTRY *glEndQuery_t) (GLenum target); +typedef void (APIENTRY *glDeleteQueries_t) (GLsizei n, const GLuint *ids); +typedef void (APIENTRY *glGetQueryObjectiv_t) (GLuint id, + GLenum pname, GLint *params); +typedef void (APIENTRY *glGetQueryObjectui64v_t) (GLuint id, + GLenum pname, uint64_t *params); +typedef void (APIENTRY *glTextureSubImage2DEXT_t) (GLuint texture, + GLenum target, GLint level, GLint xoffset, GLint yoffset, + GLsizei width, GLsizei height, GLenum format, GLenum type, + const void *pixels); +typedef void (APIENTRY *glTextureSubImage2D_t) (GLuint texture, + GLint level, GLint xoffset, GLint yoffset, + GLsizei width, GLsizei height, GLenum format, GLenum type, + const void *pixels); +typedef void (APIENTRY *glClearTexImage_t) (GLuint texture, GLint level, + GLenum format, GLenum type, const void * data); +typedef void (APIENTRY *glClearTexSubImage_t) (GLuint texture, GLint level, + GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, + GLsizei depth, GLenum format, GLenum type, const void * data); + +// callback +typedef void (APIENTRY *GLDEBUGPROC_t) (GLenum source, GLenum type, GLuint id, + GLenum severity, GLsizei length, const GLchar *message, GLvoid *userParam); + +typedef void (APIENTRY *glDebugMessageCallback_t) (GLDEBUGPROC_t callback, + const void *userParam); + + +#ifdef _WIN32 +typedef const char* (APIENTRY * wglGetExtensionsString_t) (HDC hdc); +#else // WIN32 +#define CALLBACK +#endif // WIN32 + +#endif // USE_OPENGL +#endif // RENDER_OPENGL_MGLTYPES_H diff --git a/src/render/openglx/mglxtypes.h b/src/render/openglx/mglxtypes.h index 77db392d9..46e89cd72 100644 --- a/src/render/openglx/mglxtypes.h +++ b/src/render/openglx/mglxtypes.h @@ -24,7 +24,9 @@ #if defined(USE_OPENGL) && defined(USE_X11) +#if defined(__linux__) && !defined(_WIN32) #include <GL/glx.h> +#endif typedef void *(*glXCreateContext_t) (Display *dpy, XVisualInfo *vis, void *shareList, bool direct); diff --git a/src/sdl2gfx/SDL2_rotozoom.h b/src/sdl2gfx/SDL2_rotozoom.h index ffab24fbc..94c8cc96a 100644 --- a/src/sdl2gfx/SDL2_rotozoom.h +++ b/src/sdl2gfx/SDL2_rotozoom.h @@ -1,131 +1,131 @@ -/* - -SDL2_rotozoom.c: rotozoomer, zoomer and shrinker for 32bit or 8bit surfaces - -Copyright (C) 2012-2014 Andreas Schiffler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not -claim that you wrote the original software. If you use this software -in a product, an acknowledgment in the product documentation would be -appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not be -misrepresented as being the original software. - -3. This notice may not be removed or altered from any source -distribution. - -Andreas Schiffler -- aschiffler at ferzkopp dot net - -Changed for ManaPlus (C) 2013-2017 ManaPlus developers - -*/ - -#ifndef _SDL2_rotozoom_h -#define _SDL2_rotozoom_h - -#include <math.h> - -/* Set up for C function definitions, even when using C++ */ -#ifdef __cplusplus -extern "C" -{ -#endif - -#ifndef M_PI -#define M_PI 3.1415926535897932384626433832795 -#endif - -#include "localconsts.h" - -PRAGMA48(GCC diagnostic push) -PRAGMA48(GCC diagnostic ignored "-Wshadow") -#include <SDL.h> -PRAGMA48(GCC diagnostic pop) - - /* ---- Defines */ - - /*! - \brief Disable anti-aliasing (no smoothing). - */ -#define SMOOTHING_OFF 0 - - /*! - \brief Enable anti-aliasing (smoothing). - */ -#define SMOOTHING_ON 1 - - /* ---- Function Prototypes */ - -#ifdef _MSC_VER -# if defined(DLL_EXPORT) && !defined(LIBSDL2_GFX_DLL_IMPORT) -# define SDL2_ROTOZOOM_SCOPE __declspec(dllexport) -# else -# ifdef LIBSDL2_GFX_DLL_IMPORT -# define SDL2_ROTOZOOM_SCOPE __declspec(dllimport) -# endif -# endif -#endif -#ifndef SDL2_ROTOZOOM_SCOPE -# define SDL2_ROTOZOOM_SCOPE extern -#endif - - /* - - Rotozoom functions - - */ - - SDL2_ROTOZOOM_SCOPE SDL_Surface *rotozoomSurface(SDL_Surface * src, double angle, double zoom, int smooth); - - SDL2_ROTOZOOM_SCOPE SDL_Surface *rotozoomSurfaceXY - (SDL_Surface * src, double angle, double zoomx, double zoomy, int smooth); - - - SDL2_ROTOZOOM_SCOPE void rotozoomSurfaceSize(int width, int height, double angle, double zoom, int *dstwidth, - int *dstheight); - - SDL2_ROTOZOOM_SCOPE void rotozoomSurfaceSizeXY - (int width, int height, double angle, double zoomx, double zoomy, - int *dstwidth, int *dstheight); - - /* - - Zooming functions - - */ - - SDL2_ROTOZOOM_SCOPE SDL_Surface *zoomSurface(SDL_Surface * src, double zoomx, double zoomy, int smooth); - - SDL2_ROTOZOOM_SCOPE void zoomSurfaceSize(int width, int height, double zoomx, double zoomy, int *dstwidth, int *dstheight); - - /* - - Shrinking functions - - */ - - SDL2_ROTOZOOM_SCOPE SDL_Surface *shrinkSurface(SDL_Surface * src, int factorx, int factory); - - /* - - Specialized rotation functions - - */ - - SDL2_ROTOZOOM_SCOPE SDL_Surface* rotateSurface90Degrees(SDL_Surface* src, int numClockwiseTurns); - - /* Ends C function definitions when using C++ */ -#ifdef __cplusplus -} -#endif - -#endif /* _SDL2_rotozoom_h */ +/*
+
+SDL2_rotozoom.c: rotozoomer, zoomer and shrinker for 32bit or 8bit surfaces
+
+Copyright (C) 2012-2014 Andreas Schiffler
+
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+1. The origin of this software must not be misrepresented; you must not
+claim that you wrote the original software. If you use this software
+in a product, an acknowledgment in the product documentation would be
+appreciated but is not required.
+
+2. Altered source versions must be plainly marked as such, and must not be
+misrepresented as being the original software.
+
+3. This notice may not be removed or altered from any source
+distribution.
+
+Andreas Schiffler -- aschiffler at ferzkopp dot net
+
+Changed for ManaPlus (C) 2013-2017 ManaPlus developers
+
+*/
+
+#ifndef _SDL2_rotozoom_h
+#define _SDL2_rotozoom_h
+
+#include <math.h>
+
+/* Set up for C function definitions, even when using C++ */
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+#ifndef M_PI
+#define M_PI 3.1415926535897932384626433832795
+#endif
+
+#include "localconsts.h"
+
+PRAGMA48(GCC diagnostic push)
+PRAGMA48(GCC diagnostic ignored "-Wshadow")
+#include <SDL.h>
+PRAGMA48(GCC diagnostic pop)
+
+ /* ---- Defines */
+
+ /*!
+ \brief Disable anti-aliasing (no smoothing).
+ */
+#define SMOOTHING_OFF 0
+
+ /*!
+ \brief Enable anti-aliasing (smoothing).
+ */
+#define SMOOTHING_ON 1
+
+ /* ---- Function Prototypes */
+
+#ifdef _MSC_VER
+# if defined(DLL_EXPORT) && !defined(LIBSDL2_GFX_DLL_IMPORT)
+# define SDL2_ROTOZOOM_SCOPE __declspec(dllexport)
+# else
+# ifdef LIBSDL2_GFX_DLL_IMPORT
+# define SDL2_ROTOZOOM_SCOPE __declspec(dllimport)
+# endif
+# endif
+#endif
+#ifndef SDL2_ROTOZOOM_SCOPE
+# define SDL2_ROTOZOOM_SCOPE extern
+#endif
+
+ /*
+
+ Rotozoom functions
+
+ */
+
+ SDL2_ROTOZOOM_SCOPE SDL_Surface *rotozoomSurface(SDL_Surface * src, double angle, double zoom, int smooth);
+
+ SDL2_ROTOZOOM_SCOPE SDL_Surface *rotozoomSurfaceXY
+ (SDL_Surface * src, double angle, double zoomx, double zoomy, int smooth);
+
+
+ SDL2_ROTOZOOM_SCOPE void rotozoomSurfaceSize(int width, int height, double angle, double zoom, int *dstwidth,
+ int *dstheight);
+
+ SDL2_ROTOZOOM_SCOPE void rotozoomSurfaceSizeXY
+ (int width, int height, double angle, double zoomx, double zoomy,
+ int *dstwidth, int *dstheight);
+
+ /*
+
+ Zooming functions
+
+ */
+
+ SDL2_ROTOZOOM_SCOPE SDL_Surface *zoomSurface(SDL_Surface * src, double zoomx, double zoomy, int smooth);
+
+ SDL2_ROTOZOOM_SCOPE void zoomSurfaceSize(int width, int height, double zoomx, double zoomy, int *dstwidth, int *dstheight);
+
+ /*
+
+ Shrinking functions
+
+ */
+
+ SDL2_ROTOZOOM_SCOPE SDL_Surface *shrinkSurface(SDL_Surface * src, int factorx, int factory);
+
+ /*
+
+ Specialized rotation functions
+
+ */
+
+ SDL2_ROTOZOOM_SCOPE SDL_Surface* rotateSurface90Degrees(SDL_Surface* src, int numClockwiseTurns);
+
+ /* Ends C function definitions when using C++ */
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _SDL2_rotozoom_h */
diff --git a/src/utils/x11logger.cpp b/src/utils/x11logger.cpp index cd44e5e0d..67f350d27 100644 --- a/src/utils/x11logger.cpp +++ b/src/utils/x11logger.cpp @@ -19,10 +19,10 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifdef USE_X11 - #include "utils/x11logger.h" +#ifdef USE_X11 + #include "logger.h" PRAGMA48(GCC diagnostic push) @@ -33,26 +33,28 @@ PRAGMA48(GCC diagnostic pop) #include "utils/cast.h" #include "utils/stringutils.h" - #include "debug.h" +namespace X11Logger +{ + #define logType(val, str) \ - case val: \ - typeStr = str; \ + case val: \ + typeStr = str; \ break -bool X11Logger::logEvent(const SDL_Event &event) +bool logEvent(const SDL_Event &event) { if (event.syswm.msg->subsystem != SDL_SYSWM_X11) return false; + std::string typeStr; #ifdef USE_SDL2 XEvent &xEvent = event.syswm.msg->msg.x11.event; -#else // USE_SDL2 - +#else XEvent &xEvent = event.syswm.msg->event.xevent; -#endif // USE_SDL2 +#endif const int type = xEvent.type; @@ -105,7 +107,7 @@ bool X11Logger::logEvent(const SDL_Event &event) xEvent.xfocus.detail)); case 11: typeStr = "KeymapNotify: "; - for (int f = 0; f < 32; f ++) + for (int f = 0; f < 32; f++) { typeStr.append(strprintf("%u ", CAST_U32(xEvent.xkeymap.key_vector[f]))); @@ -139,7 +141,7 @@ bool X11Logger::logEvent(const SDL_Event &event) xEvent.xcreatewindow.override_redirect ? 1 : 0)); logType(17, "DestroyNotify"); logType(18, strprintf("UnmapNotify: %d", - xEvent.xunmap.from_configure ? 1: 0)); + xEvent.xunmap.from_configure ? 1 : 0)); logType(19, strprintf("MapNotify: %d", xEvent.xmap.override_redirect ? 1 : 0)); logType(20, "MapRequest"); @@ -186,13 +188,12 @@ bool X11Logger::logEvent(const SDL_Event &event) CAST_U32(xEvent.xselection.property))); logType(32, strprintf("ColormapNotify: %u,%d", CAST_U32(xEvent.xcolormap.colormap), -// xEvent.xcolormap.new ? 1 : 0, xEvent.xcolormap.state)); case 33: typeStr = strprintf("ClientMessage: %u,%d (", CAST_U32(xEvent.xclient.message_type), xEvent.xclient.format); - for (int f = 0; f < 20; f ++) + for (int f = 0; f < 20; f++) typeStr.append(strprintf("%c", xEvent.xclient.data.b[f])); typeStr.append(")"); break; @@ -206,9 +207,22 @@ bool X11Logger::logEvent(const SDL_Event &event) break; } - logger->log("event: SDL_SYSWMEVENT: X11: %s", - typeStr.c_str()); + logger->log("event: SDL_SYSWMEVENT: X11: %s", typeStr.c_str()); return true; } +} // namespace X11Logger + +#else // !USE_X11 + +#include <SDL_events.h> + +namespace X11Logger +{ + bool logEvent(const SDL_Event &) + { + return false; + } +} + #endif // USE_X11 diff --git a/src/utils/xml.cpp b/src/utils/xml.cpp new file mode 100644 index 000000000..c408c9c2e --- /dev/null +++ b/src/utils/xml.cpp @@ -0,0 +1,129 @@ +/* + * The Mana Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2012 The Mana Developers + * + * This file is part of The Mana Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "utils/xml.h" + +#include <libxml/xmlerror.h> + +#include "log.h" + +#include "utils/filesystem.h" + +namespace XML +{ + struct XMLContext + { + std::string file; + }; + +#if LIBXML_VERSION >= 21200 + static void xmlLogger(void *ctx, const xmlError *error) +#else + static void xmlLogger(void *ctx, xmlErrorPtr error) +#endif + { + auto *context = static_cast<XMLContext*>(ctx); + + if (context) + logger->log("Error in XML file '%s' on line %d", + context->file.c_str(), error->line); + else + logger->log("Error in unknown XML file on line %d", + error->line); + + logger->log("%s", error->message); + + // No need to keep errors around + xmlCtxtResetLastError(error->ctxt); + } + + Document::Document(const std::string &filename, bool useResman): + mDoc(nullptr) + { + XMLContext ctx; + ctx.file = filename; + xmlSetStructuredErrorFunc(&ctx, xmlLogger); + + size_t size; + char *data = nullptr; + + if (useResman) + data = (char *) FS::loadFile(filename, size); + else + data = (char *) SDL_LoadFile(filename.c_str(), &size); + + if (data) + { + mDoc = xmlParseMemory(data, size); + SDL_free(data); + + if (!mDoc) + logger->log("Error parsing XML file %s", filename.c_str()); + } + else + { + logger->log("Error loading %s: %s", filename.c_str(), SDL_GetError()); + } + + xmlSetStructuredErrorFunc(nullptr, xmlLogger); + } + + Document::~Document() + { + if (mDoc) + xmlFreeDoc(mDoc); + } + + void init() + { + // Initialize libxml2 and check for potential ABI mismatches between + // compiled version and the shared library actually used. + xmlInitParser(); + LIBXML_TEST_VERSION; + + // Handle libxml2 error messages + xmlSetStructuredErrorFunc(nullptr, xmlLogger); + } + + + Writer::Writer(const std::string &fileName) + { + mWriter = xmlNewTextWriterFilename(fileName.c_str(), 0); + if (!mWriter) + { + logger->log("Error creating XML writer for file %s", fileName.c_str()); + return; + } + + xmlTextWriterSetIndent(mWriter, 1); + xmlTextWriterStartDocument(mWriter, nullptr, nullptr, nullptr); + } + + Writer::~Writer() + { + if (!mWriter) + return; + + xmlTextWriterEndDocument(mWriter); + xmlFreeTextWriter(mWriter); + } + +} // namespace XML diff --git a/src/winver.h b/src/winver.h index 1c8841328..826dd6ce6 100644 --- a/src/winver.h +++ b/src/winver.h @@ -24,4 +24,6 @@ #define VER_MINOR 0 #define VER_RELEASE 0 #define VER_BUILD 0 +#ifndef PACKAGE_VERSION #define PACKAGE_VERSION "1.0.0" +#endif |