We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed8e2e commit 9c6e89dCopy full SHA for 9c6e89d
third-party/llama.cpp-unicode/CMakeLists.txt
@@ -0,0 +1,20 @@
1
+cmake_minimum_required(VERSION 3.15)
2
+
3
+project(unicode LANGUAGES CXX)
4
5
+add_library(unicode STATIC
6
+ src/unicode.cpp
7
+ src/unicode-data.cpp
8
+)
9
10
+target_include_directories(unicode PUBLIC
11
+ ${CMAKE_CURRENT_SOURCE_DIR}/include
12
13
14
+target_compile_features(unicode PUBLIC cxx_std_17)
15
16
+install(TARGETS unicode
17
+ ARCHIVE DESTINATION lib
18
19
20
+install(DIRECTORY include/ DESTINATION include)
0 commit comments