Windows 版ビルド方法

1.プロジェクトを展開
  git clone などの方法で展開。
  展開されたディレクトリを <PROJ_HOME> と表記する。

  <PROJ_HONE>/README.hark-lib が存在するはずである。

2.Eigen の準備

  https://eigen.tuxfamily.org/ から、stable 版
  (本ドキュメント作成時は3.3.9が最新)をダウンロードし、
  <PROJ_HOME>/hark-lib/windows
  で展開する。

  <PROJ_HOME>/hark-lib/windows/eigen-3.3.9
  などが生成されるはずである(3.3.9 の箇所は実際のバージョン番号になる)。

  eigen-3.3.9 の名前を eigen に変更する。
  3. で生成されるプロジェクトファイルには上記名称でパス参照が設定されているためである。


3.hark-libのVisualStudioプロジェクトの作成

  > cd hark-lib
  > cmake ../..

出力の例
```
C:\hark-lib\hark-lib\windows>cd hark-lib

C:\hark-lib\hark-lib\windows\hark-lib>cmake ../..
-- Building for: Visual Studio 16 2019
-- Selecting Windows SDK version 10.0.18362.0 to target Windows 10.0.19042.
-- The C compiler identification is MSVC 19.28.29334.0
-- The CXX compiler identification is MSVC 19.28.29334.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.28.29333/bin/Hostx64/x64/cl.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Tools/MSVC/14.28.29333/bin/Hostx64/x64/cl.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for pthread.h
-- Looking for pthread.h - not found
-- Found Threads: TRUE
-- Configuring done
-- Generating done
-- Build files have been written to: C:hark-lib/hark-lib/windows/hark-lib
```

4.C#版プロジェクトを含んだソリューションのビルド
  <PROJ_HOME>/hark-lib/windows/hark-lib.sln を VisualStudio2019 で開き、ビルドする。

以上
