blob: f2d12563b4c67cc8308a6aaef6b4cd5b48cc494c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#=========================================================================
# Modular C++ Build System Subproject Package Config
#=========================================================================
# Please read the documenation in 'mcppbs-uguide.txt' for more details
# on how the Modular C++ Build System works.
#-------------------------------------------------------------------------
# Generic variables
#-------------------------------------------------------------------------
prefix=@prefix@
include_dir=${prefix}/include/fesvr
lib_dir=${prefix}/lib
#-------------------------------------------------------------------------
# Keywords
#-------------------------------------------------------------------------
Name : fesvr
Version : @PACKAGE_VERSION@
Description : Frontend Server C/C++ API
Requires : @fesvr_pkcdeps@
Cflags : -I${include_dir} @CPPFLAGS@ @fesvr_extra_cppflags@
Libs : -L${lib_dir} @LDFLAGS@ @fesvr_extra_ldflags@ \
-lfesvr @fesvr_extra_libs@
|