feat(build): initialize build configuration

This commit is contained in:
Rodney, Tiara 2025-03-23 00:19:58 +01:00
parent d13a599803
commit f65c319c18
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
4 changed files with 2576 additions and 1 deletions

19
configure.ac Normal file
View file

@ -0,0 +1,19 @@
AC_INIT
AC_CHECK_PROGS([GIT], [git])
AC_CHECK_PROGS([PYTHON3], [python3])
AC_MSG_NOTICE([initializing Git submodules...])
git submodule update --init --remote --recursive
AC_MSG_NOTICE([initializing python3 venv...])
python3 -m venv .venv
AC_MSG_NOTICE([installing dependencies...])
.venv/bin/pip install requirements.txt
# install dev dependencies seperately, for clarity
AC_MSG_NOTICE([installing dev dependencies...])
.venv/bin/pip install requirements-dev.txt
AC_OUTPUT