mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
180 lines
5.8 KiB
Ruby
180 lines
5.8 KiB
Ruby
#!/usr/bin/env ruby
|
|
|
|
# Simple script to generate simple cmake modules for finding
|
|
# libraries (packages)
|
|
#
|
|
# usage: generate_findpackage_file
|
|
# then you will be prompted to enter the required parameters
|
|
#
|
|
#####################################################################
|
|
#
|
|
# Copyright (c) 2006 Alexander Neundorf <neundorf@kde.org>
|
|
# Copyright (c) 2006 Andreas Schneider <mail@cynapses.org>
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
# Boston, MA 02110-1301, USA.
|
|
#
|
|
|
|
print("Name of package: ")
|
|
package=gets.chomp
|
|
|
|
printf("\nYour Name (for copyright): ")
|
|
name=gets.chomp
|
|
|
|
printf("\nYour mail (for copyright): ")
|
|
email=gets.chomp
|
|
|
|
print("\npkgconfig package name (e.g. \"libxml-2.0\", leave empty to skip pkgconfig): ")
|
|
pkgconfig=gets.chomp
|
|
|
|
print("\nLook for header (e.g. \"jpeglib.h\" or \"libxml/xpath.h\"): ")
|
|
header=gets.chomp
|
|
|
|
print("\nLook for header subdir (e.g. \"libxml2\", empty to skip ): ")
|
|
incSubDir=gets.chomp
|
|
|
|
print("\nLook for library (e.g. \"xml2\" or \"avcodec avutil\"): ")
|
|
libs=gets.chomp
|
|
|
|
t = Time.now
|
|
|
|
cmakeIncDirName=package.upcase+"_INCLUDE_DIR"
|
|
cmakeIncDirNames=package.upcase+"_INCLUDE_DIRS"
|
|
cmakeLibNames=package.upcase+"_LIBRARIES"
|
|
cmakeDefsName=package.upcase+"_DEFINITIONS"
|
|
cmakeFoundName=package.upcase+"_FOUND"
|
|
cmakeQuietName=package+"_FIND_QUIETLY"
|
|
cmakeRequiredName=package+"_FIND_REQUIRED"
|
|
|
|
file=File.new("Find#{package}.cmake", "w+")
|
|
|
|
|
|
file.printf("# - Try to find #{package}\n")
|
|
file.printf("# Once done this will define\n")
|
|
file.printf("#\n")
|
|
file.printf("# #{cmakeFoundName} - system has #{package}\n")
|
|
file.printf("# #{cmakeIncDirNames} - the #{package} include directory\n")
|
|
file.printf("# #{cmakeLibNames} - Link these to use #{package}\n")
|
|
file.printf("# #{cmakeDefsName} - Compiler switches required for using #{package}\n")
|
|
file.printf("#\n")
|
|
file.printf("# Copyright (c) #{t.year} #{name} <#{email}>\n")
|
|
file.printf("#\n")
|
|
file.printf("# Redistribution and use is allowed according to the terms of the New\n")
|
|
file.printf("# BSD license.\n")
|
|
file.printf("# For details see the accompanying COPYING-CMAKE-SCRIPTS file.\n")
|
|
file.printf("#\n")
|
|
|
|
file.printf("\n")
|
|
file.printf("\n")
|
|
|
|
file.printf("if (#{cmakeLibNames} AND #{cmakeIncDirNames})\n")
|
|
file.printf(" # in cache already\n")
|
|
file.printf(" set(#{cmakeFoundName} TRUE)\n")
|
|
file.printf("else (#{cmakeLibNames} AND #{cmakeIncDirNames})\n")
|
|
|
|
if not pkgconfig.empty?
|
|
file.printf(" # use pkg-config to get the directories and then use these values\n")
|
|
file.printf(" # in the FIND_PATH() and FIND_LIBRARY() calls\n")
|
|
file.printf(" include(UsePkgConfig)\n\n")
|
|
file.printf(" pkgconfig(#{pkgconfig} _#{package}IncDir _#{package}LinkDir _#{package}LinkFlags _#{package}Cflags)\n\n")
|
|
file.printf(" set(#{cmakeDefsName} ${_#{package}Cflags})\n\n")
|
|
end
|
|
|
|
|
|
file.printf(" find_path(#{cmakeIncDirName}\n")
|
|
file.printf(" NAMES\n")
|
|
file.printf(" #{header}\n")
|
|
file.printf(" PATHS\n")
|
|
if not pkgconfig.empty?
|
|
file.printf(" ${_#{package}IncDir}\n")
|
|
end
|
|
file.printf(" /usr/include\n")
|
|
file.printf(" /usr/local/include\n")
|
|
file.printf(" /opt/local/include\n")
|
|
file.printf(" /sw/include\n")
|
|
|
|
if not incSubDir.empty?
|
|
file.printf(" PATH_SUFFIXES\n")
|
|
file.printf(" #{incSubDir}\n")
|
|
end
|
|
file.printf(" )\n")
|
|
|
|
file.printf("\n")
|
|
|
|
libs.split(" ").each do |lib|
|
|
file.printf(" find_library(#{lib.upcase}_LIBRARY\n")
|
|
file.printf(" NAMES\n")
|
|
file.printf(" #{lib}\n")
|
|
file.printf(" PATHS\n")
|
|
if not pkgconfig.empty?
|
|
file.printf(" ${_#{package}LinkDir}\n")
|
|
end
|
|
file.printf(" /usr/lib\n")
|
|
file.printf(" /usr/local/lib\n")
|
|
file.printf(" /opt/local/lib\n")
|
|
file.printf(" /sw/lib\n")
|
|
file.printf(" )\n")
|
|
end
|
|
|
|
file.printf("\n")
|
|
|
|
libs.split(" ").each do |lib|
|
|
file.printf(" if (#{lib.upcase}_LIBRARY)\n")
|
|
file.printf(" set(#{lib.upcase}_FOUND TRUE)\n")
|
|
file.printf(" endif (#{lib.upcase}_LIBRARY)\n")
|
|
end
|
|
|
|
file.printf("\n")
|
|
|
|
file.printf(" set(#{cmakeIncDirNames}\n")
|
|
file.printf(" ${#{cmakeIncDirName}}\n")
|
|
file.printf(" )\n")
|
|
|
|
file.printf("\n")
|
|
|
|
|
|
libs.split(" ").each do |lib|
|
|
file.printf(" if (#{lib.upcase}_FOUND)\n")
|
|
file.printf(" set(#{cmakeLibNames}\n")
|
|
file.printf(" ${#{cmakeLibNames}}\n")
|
|
file.printf(" ${#{lib.upcase}_LIBRARY}\n")
|
|
file.printf(" )\n")
|
|
file.printf(" endif (#{lib.upcase}_FOUND)\n")
|
|
end
|
|
|
|
file.printf("\n")
|
|
|
|
file.printf(" if (#{cmakeIncDirNames} AND #{cmakeLibNames})\n")
|
|
file.printf(" set(#{cmakeFoundName} TRUE)\n")
|
|
file.printf(" endif (#{cmakeIncDirNames} AND #{cmakeLibNames})\n\n")
|
|
|
|
file.printf(" if (#{cmakeFoundName})\n")
|
|
file.printf(" if (NOT #{cmakeQuietName})\n")
|
|
file.printf(" message(STATUS \"Found #{package}: ${#{cmakeLibNames}}\")\n")
|
|
file.printf(" endif (NOT #{cmakeQuietName})\n")
|
|
file.printf(" else (#{cmakeFoundName})\n")
|
|
file.printf(" if (#{cmakeRequiredName})\n")
|
|
file.printf(" message(FATAL_ERROR \"Could not find #{package}\")\n")
|
|
file.printf(" endif (#{cmakeRequiredName})\n")
|
|
file.printf(" endif (#{cmakeFoundName})\n\n")
|
|
|
|
|
|
file.printf(" # show the #{cmakeIncDirNames} and #{cmakeLibNames} variables only in the advanced view\n")
|
|
file.printf(" mark_as_advanced(#{cmakeIncDirNames} #{cmakeLibNames})\n\n")
|
|
|
|
file.printf("endif (#{cmakeLibNames} AND #{cmakeIncDirNames})\n\n")
|
|
|
|
printf("Done, generated Find#{package}.cmake\n")
|
|
|