Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis/deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ install_arch_linux() {
sudo pacman -S --noconfirm mesa
sudo pacman -S --noconfirm libsm
sudo pacman -S --noconfirm cmake
sudo pacman -S --noconfirm sdl2_ttf

}

Expand Down
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ endif()

project(simh VERSION "${SIMH_VERSION}" LANGUAGES C CXX)

## Tell cmake we need c99 because GCC 15 defaults to c23 which breaks things.
set(CMAKE_C_STANDARD 99)

include(vcpkg-setup)
include(GNUInstallDirs)

Expand Down