Skip to content

Commit

Permalink
version 0.19.2
Browse files Browse the repository at this point in the history
Fixes universal2 wheels for mac
  • Loading branch information
ianhbell committed Mar 17, 2024
1 parent 88c0cb5 commit 4312b0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,11 @@ if (NOT TEQP_NO_TEQPCPP)

if(MSVC)
target_compile_options(teqpcpp PRIVATE /W4 ) # or add /WX to turn warnings into errors
target_compile_options(teqpcpp PUBLIC /wc5054)
target_compile_options(teqpcpp PUBLIC /wd5054)
else()
# Turn on all warnings, and then disable selectively
target_compile_options(teqpcpp PRIVATE -Wall -Wextra -Wpedantic -Wno-deprecated-copy -Wno-language-extension-token) # or add -Werror to turn warnings into errors
target_compile_options(teqpcpp PUBLIC -Wno-deprecated-anon-enum-enum-conversion)
target_compile_options(teqpcpp PUBLIC -Wno-deprecated-anon-enum-enum-conversion)
endif()

if (TEQP_TESTTEQPCPP)
Expand Down
2 changes: 1 addition & 1 deletion interface/teqpversion.hpp
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#include <string>
const std::string TEQPVERSION = "0.19.1";
const std::string TEQPVERSION = "0.19.2";

0 comments on commit 4312b0b

Please sign in to comment.