mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
e3c1626dfe
* github.com/nemtrif/utfcpp * hmm... try tea.xyz/gx/make for linux test * test +gnu.org/gcc: '*' * LDFLAGS * -DCMAKE_CXX_FLAGS="-std=c++14" * LD_LIBRARY_PATH * -DCMAKE_CXX_FLAGS="-std=c++17" * gc++ maybe * without DCMAKE_CXX_COMPILER * -gnu.org/gcc: '*' * +tea.xyz/gx/cc: c99 * test deps
5 lines
217 B
CMake
5 lines
217 B
CMake
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
|
project(utf8_append LANGUAGES CXX)
|
|
find_package(utf8cpp REQUIRED CONFIG)
|
|
add_executable(utf8_append utf8_append.cpp)
|
|
target_link_libraries(utf8_append PRIVATE utf8cpp) |