ObjMatrix  Check-in [3f21e45c11]

Overview
Comment:Include includedir in .oc file
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA3-256: 3f21e45c114e4d353153898b1942f2333e69d86bf9eb1df823e5c80a654abdca
User & Date: js on 2024-08-17 00:34:03
Other Links: manifest | tags
Context
2024-08-17
00:34
Include includedir in .oc file Leaf check-in: 3f21e45c11 user: js tags: trunk
2024-08-11
15:38
Update URLs in GitHub issue template check-in: 33ca8aea88 user: js tags: trunk
Changes

Modified ObjMatrix.oc.in from [510c2d0194] to [6be0260d50].

1
2
3

4
5
6
package_format 1
package_depends_on ObjFWTLS
package_depends_on ObjSQLite3

LIBS="-L@libdir@ -lobjmatrix $LIBS"
FRAMEWORK_LIBS="-L@libdir@ -lobjmatrix $FRAMEWORK_LIBS"
STATIC_LIBS="@libdir@/libobjmatrix.a $STATIC_LIBS"



>



1
2
3
4
5
6
7
package_format 1
package_depends_on ObjFWTLS
package_depends_on ObjSQLite3
CPPFLAGS="$CPPFLAGS -I@includedir@"
LIBS="-L@libdir@ -lobjmatrix $LIBS"
FRAMEWORK_LIBS="-L@libdir@ -lobjmatrix $FRAMEWORK_LIBS"
STATIC_LIBS="@libdir@/libobjmatrix.a $STATIC_LIBS"

Modified meson.build from [444e8d3bcc] to [5214b84937].

18
19
20
21
22
23
24

25
26
27
28
  [objfwconfig, '--packages-dir'],
  check: true).stdout().strip()

configure_file(
  input: 'ObjMatrix.oc.in',
  output: 'ObjMatrix.oc',
  configuration: {

    'libdir': get_option('prefix') / get_option('libdir'),
  },
  install: true,
  install_dir: packages_dir)







>




18
19
20
21
22
23
24
25
26
27
28
29
  [objfwconfig, '--packages-dir'],
  check: true).stdout().strip()

configure_file(
  input: 'ObjMatrix.oc.in',
  output: 'ObjMatrix.oc',
  configuration: {
    'includedir': get_option('prefix') / get_option('includedir'),
    'libdir': get_option('prefix') / get_option('libdir'),
  },
  install: true,
  install_dir: packages_dir)