-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: basic install ac-local, ref #180
- Loading branch information
Showing
3 changed files
with
42 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Copyright (c) Alpaca Core | ||
# SPDX-License-Identifier: MIT | ||
# | ||
add_library(ac-schema INTERFACE) | ||
add_library(ac::schema ALIAS ac-schema) | ||
target_link_libraries(ac-schema INTERFACE | ||
ac::astl-private | ||
ac::dict | ||
magic_enum::magic_enum | ||
) | ||
target_sources(ac-schema INTERFACE FILE_SET HEADERS FILES | ||
ac/schema/ModelSchema.hpp | ||
ac/schema/ModelSchemaGenHelper.hpp | ||
# ac/schema/SchemaEnum.hpp | ||
ac/schema/SchemaItem.hpp | ||
) | ||
|
||
install(TARGETS ac-schema | ||
FILE_SET HEADERS | ||
) |