Add an example

This commit is contained in:
Nishi 2026-06-19 06:52:57 +09:00
commit 6aee2f5875
2 changed files with 51 additions and 0 deletions

View file

@ -17,3 +17,7 @@ if(UTF8)
target_compile_definitions(sj3core PRIVATE UTF8)
target_compile_definitions(sj3mkdic PRIVATE UTF8)
endif()
file(GLOB_RECURSE SJ3TEST_SRCS src/sj3test/**.c)
add_executable(sj3test ${SJ3TEST_SRCS})
target_link_libraries(sj3test PRIVATE sj3core)