yyc12345
e72102496b
- move EnumsHelper into YYCC because it is widely used. - rename all calling to EnumsHelper due to this modification. - add version checker in code to make sure that user use correct YYCC library to compile. - modify some include syntax because the include directory layout changes of YYCC. - update CMake script to resolve the bug that we can not export LibCmo (thanks doyaGu and BLumia).
16 lines
682 B
CMake
16 lines
682 B
CMake
|
|
# Check YYCC path environment variable
|
|
if (NOT DEFINED YYCC_PATH)
|
|
message(FATAL_ERROR "You must set YYCC_PATH variable to one of YYCC CMake distribution installation path.")
|
|
endif()
|
|
|
|
# Find YYCC library
|
|
# It will produce YYCC::YYCCommonplace target for including and linking.
|
|
#
|
|
# Please note we MUST set CMake variable YYCCommonplace_ROOT to make sure CMake can found YYCC in out given path.
|
|
# The cache status of YYCCommonplace_ROOT is doesn't matter.
|
|
# CMake will throw error if we use HINTS feature in find_package to find YYCC.
|
|
set(YYCCommonplace_ROOT ${YYCC_PATH} CACHE PATH
|
|
"The path to YYCC CMake distribution installation path.")
|
|
find_package(YYCCommonplace REQUIRED)
|