reworded tart and now it works with utf8 and is enabled by defalt
This commit is contained in:
30
test/CMakeLists.txt
Normal file
30
test/CMakeLists.txt
Normal 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
|
||||
)
|
||||
Reference in New Issue
Block a user