You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
435 B
13 lines
435 B
FROM amigadev/crosstools:m68k-amigaos-gcc10 |
|
|
|
RUN apt-get install --no-install-recommends -y smpq |
|
RUN mkdir /devilutionx-deps-build |
|
COPY Packaging/amiga/prep.sh /devilutionx-deps-build/prep.sh |
|
RUN cd /devilutionx-deps-build && ./prep.sh |
|
|
|
CMD cmake -S. -Bbuild-amiga -DCPACK=ON \ |
|
-DCMAKE_BUILD_TYPE=Release \ |
|
-DM68K_CPU=68040 \ |
|
-DM68K_FPU=hard \ |
|
-DM68K_COMMON="-s -fbbb=- -ffast-math" && \ |
|
cmake --build build-amiga -j $(nproc)
|
|
|