1
0
mirror of https://github.com/lxsang/antd-lua-plugin synced 2025-07-25 10:19:57 +02:00

mimgrating from another repo

This commit is contained in:
Xuan Sang LE
2018-09-19 15:08:49 +02:00
parent 91320521e8
commit 38bd13b46b
600 changed files with 362490 additions and 1 deletions

View File

@ -0,0 +1,141 @@
if (UNIX OR MINGW OR WIN32)
IF (NOT APPLICATION_NAME)
MESSAGE(STATUS "${PROJECT_NAME} is used as APPLICATION_NAME")
SET(APPLICATION_NAME ${PROJECT_NAME})
ENDIF (NOT APPLICATION_NAME)
# Suffix for Linux
SET(LIB_SUFFIX
CACHE STRING "Define suffix of directory name (32/64)"
)
SET(EXEC_INSTALL_PREFIX
"${CMAKE_INSTALL_PREFIX}"
CACHE PATH "Base directory for executables and libraries"
FORCE
)
SET(SHARE_INSTALL_PREFIX
"${CMAKE_INSTALL_PREFIX}/share"
CACHE PATH "Base directory for files which go to share/"
FORCE
)
SET(DATA_INSTALL_PREFIX
"${SHARE_INSTALL_PREFIX}/${APPLICATION_NAME}"
CACHE PATH "The parent directory where applications can install their data" FORCE
)
# The following are directories where stuff will be installed to
SET(BIN_INSTALL_DIR
"${EXEC_INSTALL_PREFIX}/bin"
CACHE PATH "The ${APPLICATION_NAME} binary install dir (default prefix/bin)"
FORCE
)
SET(SBIN_INSTALL_DIR
"${EXEC_INSTALL_PREFIX}/sbin"
CACHE PATH "The ${APPLICATION_NAME} sbin install dir (default prefix/sbin)"
FORCE
)
SET(LIB_INSTALL_DIR
"${EXEC_INSTALL_PREFIX}/lib${LIB_SUFFIX}"
CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is prefix/lib)"
FORCE
)
SET(LIBEXEC_INSTALL_DIR
"${EXEC_INSTALL_PREFIX}/libexec"
CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is prefix/libexec)"
FORCE
)
SET(PLUGIN_INSTALL_DIR
"${LIB_INSTALL_DIR}/${APPLICATION_NAME}"
CACHE PATH "The subdirectory relative to the install prefix where plugins will be installed (default is prefix/lib/${APPLICATION_NAME})"
FORCE
)
SET(INCLUDE_INSTALL_DIR
"${CMAKE_INSTALL_PREFIX}/include"
CACHE PATH "The subdirectory to the header prefix (default prefix/include)"
FORCE
)
SET(DATA_INSTALL_DIR
"${DATA_INSTALL_PREFIX}"
CACHE PATH "The parent directory where applications can install their data (default prefix/share/${APPLICATION_NAME})"
FORCE
)
SET(HTML_INSTALL_DIR
"${DATA_INSTALL_PREFIX}/doc/HTML"
CACHE PATH "The HTML install dir for documentation (default data/doc/html)"
FORCE
)
SET(ICON_INSTALL_DIR
"${DATA_INSTALL_PREFIX}/icons"
CACHE PATH "The icon install dir (default data/icons/)"
FORCE
)
SET(SOUND_INSTALL_DIR
"${DATA_INSTALL_PREFIX}/sounds"
CACHE PATH "The install dir for sound files (default data/sounds)"
FORCE
)
SET(LOCALE_INSTALL_DIR
"${SHARE_INSTALL_PREFIX}/locale"
CACHE PATH "The install dir for translations (default prefix/share/locale)"
FORCE
)
SET(XDG_APPS_DIR
"${SHARE_INSTALL_PREFIX}/applications/"
CACHE PATH "The XDG apps dir"
FORCE
)
SET(XDG_DIRECTORY_DIR
"${SHARE_INSTALL_PREFIX}/desktop-directories"
CACHE PATH "The XDG directory"
FORCE
)
SET(SYSCONF_INSTALL_DIR
"${EXEC_INSTALL_PREFIX}/etc"
CACHE PATH "The ${APPLICATION_NAME} sysconfig install dir (default prefix/etc)"
FORCE
)
SET(MAN_INSTALL_DIR
"${SHARE_INSTALL_PREFIX}/man"
CACHE PATH "The ${APPLICATION_NAME} man install dir (default prefix/man)"
FORCE
)
SET(INFO_INSTALL_DIR
"${SHARE_INSTALL_PREFIX}/info"
CACHE PATH "The ${APPLICATION_NAME} info install dir (default prefix/info)"
FORCE
)
set (CMAKE_CONFIG_DIR "${LIB_INSTALL_DIR}/cmake/fann" CACHE PATH "config dir" FORCE)
set (PKGCONFIG_INSTALL_DIR "${LIB_INSTALL_DIR}/pkgconfig" CACHE PATH "pkgconfig dir" FORCE)
endif ()
if (MSCV)
# Same same
SET(BIN_INSTALL_DIR .)
SET(SBIN_INSTALL_DIR .)
SET(LIB_INSTALL_DIR .)
SET(PLUGIN_INSTALL_DIR plugins)
SET(HTML_INSTALL_DIR doc/HTML)
SET(ICON_INSTALL_DIR .)
SET(SOUND_INSTALL_DIR .)
SET(LOCALE_INSTALL_DIR lang)
endif (MSCV)

View File

@ -0,0 +1,8 @@
/* Name of package */
#cmakedefine PACKAGE "@PACKAGE@"
/* Version number of package */
#cmakedefine VERSION "@FANN_VERSION_STRING@"
/* Define for the x86_64 CPU famyly */
#cmakedefine X86_64 "@X86_64@"

View File

@ -0,0 +1,38 @@
# -*- cmake -*-
#
# fann-config.cmake(.in)
#
# Use the following variables to compile and link against FANN:
# FANN_FOUND - True if FANN was found on your system
# FANN_USE_FILE - The file making FANN usable
# FANN_DEFINITIONS - Definitions needed to build with FANN
# FANN_INCLUDE_DIR - Directory where fann.h can be found
# FANN_INCLUDE_DIRS - List of directories of FANN and it's dependencies
# FANN_LIBRARY - FANN library location
# FANN_LIBRARIES - List of libraries to link against FANN library
# FANN_LIBRARY_DIRS - List of directories containing FANN' libraries
# FANN_ROOT_DIR - The base directory of FANN
# FANN_VERSION_STRING - A human-readable string containing the version
# FANN_VERSION_MAJOR - The major version of FANN
# FANN_VERSION_MINOR - The minor version of FANN
# FANN_VERSION_PATCH - The patch version of FANN
@PACKAGE_INIT@
set ( FANN_FOUND 1 )
set ( FANN_USE_FILE "@FANN_USE_FILE@" )
set ( FANN_DEFINITIONS "@FANN_DEFINITIONS@" )
set ( FANN_INCLUDE_DIR "@FANN_INCLUDE_DIR@" )
set ( FANN_INCLUDE_DIRS "@FANN_INCLUDE_DIRS@" )
set ( FANN_LIBRARY "@FANN_LIBRARY@" )
set ( FANN_LIBRARIES "@FANN_LIBRARIES@" )
set ( FANN_LIBRARY_DIRS "@FANN_LIBRARY_DIRS@" )
set ( FANN_ROOT_DIR "@FANN_ROOT_DIR@" )
set ( FANN_VERSION_STRING "@FANN_VERSION_STRING@" )
set ( FANN_VERSION_MAJOR "@FANN_VERSION_MAJOR@" )
set ( FANN_VERSION_MINOR "@FANN_VERSION_MINOR@" )
set ( FANN_VERSION_PATCH "@FANN_VERSION_PATCH@" )

View File

@ -0,0 +1,9 @@
# -*- cmake -*-
#
# fann-use.cmake
#
add_definitions ( ${FANN_DEFINITIONS} )
include_directories ( ${FANN_INCLUDE_DIRS} )
link_directories ( ${FANN_LIBRARY_DIRS} )

View File

@ -0,0 +1,10 @@
prefix=@CMAKE_INSTALL_PREFIX@
exec_prefix=@BIN_INSTALL_DIR@
libdir=@LIB_INSTALL_DIR@
includedir=@INCLUDE_INSTALL_DIR@
Name: fann
Description: Fast Artificial Neural Network Library
Version: @VERSION@
Libs: -L${libdir} -lm -lfann
Cflags: -I${includedir}