blob: 24807da914c7e0f14228d9a451ef1dc634ecd759 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
RESOURCES_LIBRARY()
IF(GOSTD_VERSION == 1.20)
DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(GO_TOOLS go1.20.json)
ELSEIF(GOSTD_VERSION == 1.21)
DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(GO_TOOLS go1.21.json)
ELSE()
MESSAGE(FATAL_ERROR Unsupported version [${GOSTD_VERSION}] of Go Standard Library)
ENDIF()
END()
|