dirent.cmake 1.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Note(chenxin33): dirent.h is only exist in Linux, so get it from github when build in windows.
# use dirent tag v1.23.2 on 09/05//2018 https://github.com/tronkko/dirent.git

18
include(ExternalProject)
19

20 21
set(DIRENT_PREFIX_DIR ${THIRD_PARTY_PATH}/dirent)
set(DIRENT_INCLUDE_DIR ${THIRD_PARTY_PATH}/dirent/src/extern_dirent/include)
22 23 24

include_directories(${DIRENT_INCLUDE_DIR})

25 26
set(DIRENT_REPOSITORY ${GIT_URL}/tronkko/dirent)
set(DIRENT_TAG 1.23.2)
27 28 29

ExternalProject_Add(
  extern_dirent
30 31 32 33 34
  ${EXTERNAL_PROJECT_LOG_ARGS} ${SHALLOW_CLONE}
  GIT_REPOSITORY ${DIRENT_REPOSITORY}
  GIT_TAG ${DIRENT_TAG}
  PREFIX ${DIRENT_PREFIX_DIR}
  UPDATE_COMMAND ""
35
  CONFIGURE_COMMAND ""
36 37 38
  BUILD_COMMAND ""
  INSTALL_COMMAND ""
  TEST_COMMAND "")
39 40 41

add_library(dirent INTERFACE)

42
add_dependencies(dirent extern_dirent)