File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 22# Project
33# ----------------------------------
44cmake_minimum_required (VERSION 3.17)
5- project (cpp-kana VERSION 0 .0.0.1 LANGUAGES CXX)
5+ project (cpp-kana VERSION 1 .0.0.0 LANGUAGES CXX)
66
77set (CMAKE_CXX_STANDARD 17)
88
99# ----------------------------------
1010# Build Options
1111# ----------------------------------
12- option (CPP_KANA_BUILD_STATIC "Build static library" ON )
13- option (CPP_KANA_BUILD_TESTS "Build test cases" ON )
12+ option (CPP_KANA_BUILD_STATIC "Build static library" OFF )
13+ option (CPP_KANA_BUILD_TESTS "Build test cases" OFF )
1414option (CPP_KANA_INSTALL "Install library" ON )
1515
1616# ----------------------------------
Original file line number Diff line number Diff line change @@ -6,6 +6,17 @@ cpp-kana is a lightweight library for converting Japanese kana to romaji and vic
66
77It is written in C++ and uses a simple algorithm to perform the conversion.
88
9+ ## Install
10+
11+ ``` bash
12+ vcpkg install cpp-kana
13+ ```
14+
15+ ``` cmake
16+ find_package(cpp-kana)
17+ target_link_libraries(${PROJECT_NAME} PRIVATE cpp-kana::cpp-kana)
18+ ```
19+
920## Usage
1021
1122``` c++
You can’t perform that action at this time.
0 commit comments