mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-07 04:34:44 +00:00
Moved the addSourceDirectory for physics/Bullet into the Engine/Source/CMakeLists.txt file that way it can actually appear where we expect it to in the solution explorer.
19 lines
323 B
Text
19 lines
323 B
Text
FROM ubuntu:bionic
|
|
|
|
RUN apt-get update -qq
|
|
RUN apt-get install -y \
|
|
build-essential \
|
|
clang \
|
|
cmake \
|
|
curl \
|
|
git \
|
|
libgl-dev \
|
|
libglu-dev \
|
|
libpython3-dev \
|
|
lsb-release \
|
|
pkg-config \
|
|
python3 \
|
|
python3-dev \
|
|
python3-distutils \
|
|
software-properties-common \
|
|
sudo
|