yyc12345
5726c81fdb
- switch to CMake build system and delete original project files because Visual Studio supports CMake project debugging. - there is a UTF-8 bug for library after switching, but I don't know why it happends. maybe fixed in future.
9 lines
192 B
CMake
9 lines
192 B
CMake
cmake_minimum_required(VERSION 3.12)
|
|
project(YYCCommonplace LANGUAGES CXX)
|
|
|
|
# Add core static library in build
|
|
add_subdirectory(src)
|
|
# Add testbench code in build
|
|
add_subdirectory(testbench)
|
|
|