added boost

This commit is contained in:
build@apk-groulx 2023-09-06 03:43:14 +00:00
parent 067de7880a
commit e33fa8a90c

View file

@ -22,6 +22,12 @@ makedepends="
libxscrnsaver
libncurses++
libxrender-dev
boost1.82-dev
boost1.82-libs
boost1.82-regex
boost1.82-system
boost1.82-filesystem
boost1.82-date_time
libxi-dev
libxcb-dev
libx11-dev
@ -69,6 +75,14 @@ EOF
INCLUDEPATH += /usr/include/openssl
LIBS += -lcrypto -lssl
EOF
cat > "$builddir"/core/Common/3dParty/boost/boost.pri << EOF
INCLUDEPATH += /usr/include/boost
CORE_BOOST_LIBS = /usr/lib
core_boost_libs:LIBS += -L$$CORE_BOOST_LIBS -lboost_system -lboost_filesystem
core_boost_regex:LIBS += -L$$CORE_BOOST_LIBS -lboost_regex
core_boost_date_time:LIBS += -L$$CORE_BOOST_LIBS -lboost_date_time
EOF
}
build() {