Files
SuperScriptMaterializer/cmake/custom_import_yycc.cmake
yyc12345 ecebc42603 refactor: cleanup project. ready for refactor.
- remove all old code
- build directory hierarchy, add basic cmake scripts.
2024-07-23 21:37:56 +08:00

11 lines
277 B
CMake

# Check YYCC path variable
if (NOT DEFINED YYCC_PATH)
message(FATAL_ERROR "You must set YYCC_PATH variable to one of CMake distribution of YYCC installation path.")
endif()
# Find YYCC library
find_package(YYCCommonplace REQUIRED
HINTS ${YYCC_PATH} NO_DEFAULT_PATH
)