Files
salmanoff/configure.ac
T
patergentium 6dc4287ae3 Refactor project structure and update configurations
The project now builds.

- Updated .vscode/launch.json and .vscode/tasks.json for improved
    development workflow
- Modified Makefile.am, configure, and configure.ac for build process
    enhancements
- Updated corelogic/Makefile.am and
    corelogic/include/sensors/interoceptor.h
- Renamed corelogic/main.cpp to main.cpp for better project organization
2024-11-22 20:07:42 +11:00

23 lines
618 B
Plaintext

AC_INIT([The Harriman-Peikoff Project], [0.00], [latentprion@gmail.com],
[harikoff], [github.com/latentprion/harikoff])
# Safety checks in case user overwritten --srcdir
AC_CONFIG_SRCDIR([corelogic/mind.cpp])
# Store the auxiliary build tools (e.g., install-sh, config.sub, config.guess)
# in this dir (build-aux)
AC_CONFIG_AUX_DIR([build-aux])
# Init automake, and specify this program does not follow the gnu coding standards.
AM_INIT_AUTOMAKE([foreign -Wall -Werror])
AC_PROG_CC
AC_PROG_CXX
AC_PROG_RANLIB
AM_PROG_AR
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile corelogic/Makefile])
AC_OUTPUT