#TODO - once we're not doing both autotools and CMake, re-examine #this pkgconfig setup set(prefix "${CMAKE_INSTALL_PREFIX}") set(exec_prefix "\${prefix}") set(libdir "\${exec_prefix}/lib") set(includedir "\${prefix}/include") set(datarootdir "\${prefix}/share") set(datadir "\${datarootdir}") set(LIBTCL "-ltcl${TCL_VERSION_MAJOR}.${TCL_VERSION_MINOR}") if(M_LIBRARY) set(LIBM "-l${M_LIBRARY}") endif(M_LIBRARY) #The CMake system relies on the C++ compiler to find #this, so we set it manually for pkgconfig set(LIBSTDCXX "-lstdc++") #Also provide the X11 and PNG link strings - generally #speaking CMake tends to use full paths, so this is a #bit hackish - need to investigate best practices for later #also, are pkgconfig systems generally X11 only? (Haiku #and Aqua build on OSX come to mind, but are pkgconfig setups #used there? set(X_LIBS "-lX11 -lXext -lXi") set(LIBPNG "-lpng") set(pkgconfig_DATA libanalyze.pc.in libbn.pc.in libbrlcad.pc.in libbu.pc.in libdm.pc.in libfb.pc.in libfft.pc.in libgcv.pc.in libged.pc.in libicv.pc.in libmultispectral.pc.in liboptical.pc.in libpc.pc.in libpkg.pc.in librt.pc.in libwdb.pc.in ) foreach(pkgfile ${pkgconfig_DATA}) string(REGEX REPLACE "([0-9a-z_-]*).pc.in" "\\1" filename_root "${pkgfile}") configure_file(${pkgfile} ${CMAKE_CURRENT_BINARY_DIR}/${filename_root}.pc @ONLY) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${filename_root}.pc DESTINATION ${LIB_DIR}/pkgconfig) endforeach(pkgfile ${pkgconfig_DATA}) CMAKEFILES(${pkgconfig_DATA}) # Local Variables: # tab-width: 8 # mode: cmake # indent-tabs-mode: t # End: # ex: shiftwidth=2 tabstop=8