diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-02-26 21:18:56 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2024-02-26 21:18:56 +0100 |
commit | ebe4100f34d1899ced72f43ed055cc21a3e7e1e1 (patch) | |
tree | d208177a7e323eed5579ff3a80d803acfa7a39c3 /Makefile | |
parent | 85f498bc0749ba8479357d96994c9b46d36c5a52 (diff) | |
download | sysc-playground-ebe4100f34d1899ced72f43ed055cc21a3e7e1e1.tar.gz sysc-playground-ebe4100f34d1899ced72f43ed055cc21a3e7e1e1.zip |
port to systemc-3.0.0 beta
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -38,7 +38,7 @@ BUILD/CMakeCache.txt: CMakeLists.txt -G Ninja \ -DCMAKE_EXPORT_COMPILE_COMMANDS=1 \ -DCMAKE_BUILD_TYPE=DEBUG \ - -DCMAKE_CXX_STANDARD=14 \ + -DCMAKE_CXX_STANDARD=17 \ -DBUILD_SHARED_LIBS=OFF \ #-DCMAKE_FIND_DEBUG_MODE=ON ln -sfn BUILD/compile_commands.json @@ -49,7 +49,7 @@ targets: ninja -C BUILD -t targets fmt: - clang-format -i $(shell shell find src test -type f -name \*.h -or -name \*.cc) + clang-format -i $(shell find src test -type f -name \*.h -or -name \*.cc) # -- CLEAN --------------------------------------------------------------------- |