reworded tart and now it works with utf8 and is enabled by defalt

This commit is contained in:
2026-01-29 10:47:16 -08:00
parent ee10de863d
commit 704f624f25
8 changed files with 493 additions and 622 deletions

30
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,30 @@
cmake_minimum_required(VERSION 3.20.0)
project(testing)
# CPP
set( CMAKE_CXX_STANDARD 11)
set( CMAKE_CXX_STANDARD_REQUIRED ON)
# C
set( CMAKE_C_STANDARD 11)
set( CMAKE_C_STANDARD_REQUIRED ON)
#set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin/libs)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin)
set( CMAKE_COLOR_MAKEFILE ON)
set( CMAKE_COLOR_DIAGNOSTICS ON)
set( CMAKE_EXPORT_COMPILE_COMMANDS ON)
set( SOURCES
main.c
)
add_executable(
Testing
${SOURCES}
)
target_link_libraries(
Testing
TartLib
)