Skip to content

Commit

Permalink
Merge pull request dockcross#847 from thewtex/emscripten-3-1-64
Browse files Browse the repository at this point in the history
Update emscripten to 3.1.64 and cmake_minimum_required to 3.16
  • Loading branch information
JonasVautherin authored Aug 9, 2024
2 parents 1276ade + 8231b1f commit 3603d82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def test_cmake_build_system(build_dir, language, source, emulator, linker_flags,
print('Building ' + source + ' with CMake...')

with open('CMakeLists.txt', 'w') as fp:
fp.write('cmake_minimum_required(VERSION 3.0)\n')
fp.write('cmake_minimum_required(VERSION 3.16)\n')
fp.write('project(test-compiler)\n')
fp.write('add_executable(a.out ' + os.path.basename(source) + ')\n')
if emulator:
Expand Down
2 changes: 1 addition & 1 deletion web-wasm/Dockerfile.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DOCKER_IMAGE_VERSION=3.1.60
ARG DOCKER_IMAGE_VERSION=3.1.64
FROM emscripten/emsdk:$DOCKER_IMAGE_VERSION

LABEL maintainer="Matt McCormick matt.mccormick@kitware.com"
Expand Down

0 comments on commit 3603d82

Please sign in to comment.