mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-10-29 22:45:34 +01:00
Green Sky
f27300a8fa
it has the important stuff, but still misses conviniences like buffers and optimizations like varints. only works for little endian but theoretically only needs endian detection to be able to support bigendian
19 lines
258 B
CMake
19 lines
258 B
CMake
add_executable(s6zer_test
|
|
test.cpp
|
|
)
|
|
|
|
target_include_directories(s6zer_test PRIVATE ".")
|
|
|
|
target_compile_features(s6zer_test PRIVATE cxx_std_17)
|
|
|
|
target_link_libraries(s6zer_test
|
|
gtest_main
|
|
|
|
s6zer
|
|
|
|
random
|
|
)
|
|
|
|
add_test(NAME s6zer_test COMMAND s6zer_test)
|
|
|