Skip to content

Commit

Permalink
✨ Operators |, ^, &, <<, and >> (and their assignment counterparts, w…
Browse files Browse the repository at this point in the history
…here necessary)

— 🛠 Finally closes #2
  • Loading branch information
ThePhD committed Aug 1, 2022
1 parent 94f9375 commit 643013d
Show file tree
Hide file tree
Showing 29 changed files with 6,152 additions and 6,395 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ install/
.vs/
CMakeSettings.json
.mypy_cache/
/main.cpp
12 changes: 12 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -172,3 +172,15 @@ endif()
if (ITSY_BITSY_DOCS)
add_subdirectory(docs)
endif()

if (ITSY_BITSY_SCRATCH)
add_executable(scratch main.cpp)
target_link_libraries(scratch
PRIVATE
itsy::bitsy
)
target_compile_features(scratch
PRIVATE
cxx_std_20
)
endif()
Loading

0 comments on commit 643013d

Please sign in to comment.