-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from ydb-platform/remove-conan
Remove conan
- Loading branch information
Showing
18 changed files
with
49 additions
and
1,035 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,26 @@ | ||
# - Find Iconv | ||
# | ||
# Iconv_INCLUDE - Where to find LibIconv public headers | ||
# Iconv_LIBS - List of libraries when using LibIconv. | ||
# Iconv_FOUND - True if LibIconv found. | ||
|
||
find_path(Iconv_INCLUDE_DIR | ||
iconv.h | ||
HINTS $ENV{Iconv_ROOT}/include) | ||
|
||
find_library(Iconv_LIBRARIES | ||
iconv | ||
HINTS $ENV{Iconv_ROOT}/lib) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(Iconv DEFAULT_MSG Iconv_LIBRARIES Iconv_INCLUDE_DIR) | ||
|
||
mark_as_advanced(Iconv_INCLUDE_DIR Iconv_LIBRARIES) | ||
|
||
if (Iconv_FOUND AND NOT TARGET Iconv::Iconv) | ||
add_library(Iconv::Iconv UNKNOWN IMPORTED) | ||
set_target_properties(Iconv::Iconv PROPERTIES | ||
IMPORTED_LOCATION ${Iconv_LIBRARIES} | ||
INTERFACE_INCLUDE_DIRECTORIES ${Iconv_INCLUDE_DIR} | ||
) | ||
endif() |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.