Patrick Lühne
e01506f9ff
Boost was only used for program option parsing. To avoid this huge dependency, this commit replaces boost::program_options with cxxopts, a header-only library with the same functionality. cxxopts is added as a submodule, and Boost is removed from the dependencies in the code and Travis configuration.
10 lines
196 B
Plaintext
10 lines
196 B
Plaintext
FROM archimg/base-devel:latest
|
|
|
|
ARG toolchain
|
|
|
|
RUN pacman -Sy
|
|
RUN pacman -S --noconfirm cmake git ninja re2c
|
|
RUN if [ "${toolchain}" = "clang" ]; then pacman -S --noconfirm clang; fi
|
|
|
|
VOLUME /app
|