-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add libthai and libiconv rules (#15)
Co-authored-by: Rocka <i@rocka.me>
- Loading branch information
1 parent
774dae3
commit 4750ae9
Showing
13 changed files
with
1,970 additions
and
1 deletion.
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
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,15 @@ | ||
cmake_minimum_required(VERSION 3.22.1) | ||
project(libiconv) | ||
|
||
set(LIBICONV_HEADER | ||
"include/iconv.h" | ||
) | ||
set(LIBICONV_SOURCE | ||
lib/iconv.c | ||
libcharset/lib/localcharset.c | ||
) | ||
|
||
add_library(iconv STATIC ${LIBICONV_SOURCE}) | ||
target_include_directories(iconv PRIVATE include libcharset/include) | ||
install(TARGETS iconv) | ||
install(FILES ${LIBICONV_HEADER} DESTINATION include) |
Oops, something went wrong.