Skip to content

Commit

Permalink
add explanation for C++ and C flags
Browse files Browse the repository at this point in the history
  • Loading branch information
tekdogan committed Oct 6, 2024
1 parent b851e63 commit 03a4325
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions custom-triplets/x64-linux-nes.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ set(VCPKG_LIBRARY_LINKAGE static)

set(VCPKG_CMAKE_SYSTEM_NAME Linux)

# use C++20 for updated packages
set(VCPKG_CXX_FLAGS -std=c++2a)
set(VCPKG_C_FLAGS "")

Expand Down
1 change: 1 addition & 0 deletions custom-triplets/x64-osx-nes.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ set(VCPKG_LIBRARY_LINKAGE static)
set(VCPKG_CMAKE_SYSTEM_NAME Darwin)
set(VCPKG_OSX_ARCHITECTURES x86_64)

# use C++20 for updated packages
set(VCPKG_CXX_FLAGS -std=c++2a)
set(VCPKG_C_FLAGS "")

Expand Down

0 comments on commit 03a4325

Please sign in to comment.