source: roaraudio/roarclients/roar-config.c @ 2874:797f4687addc

Last change on this file since 2874:797f4687addc was 2278:6a1b906aa6d4, checked in by phi, 15 years ago

added libroareio to list of libs

File size: 2.3 KB
Line 
1//roar-config.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roarclients a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#include <roaraudio.h>
26
27struct {
28 char * name;
29 char * cflags;
30 char * libs;
31} flags[] = {
32 {"roar",      ROAR_CFLAGS, ROAR_LIBS      }, // NOTE: libroar *MUST* be the first entry
33 {"roardsp",   ROAR_CFLAGS, ROAR_LIBS_DSP  },
34 {"roarmidi",  ROAR_CFLAGS, ROAR_LIBS_MIDI },
35 {"roarlight", ROAR_CFLAGS, ROAR_LIBS_LIGHT},
36 {"roareio",   ROAR_CFLAGS, ROAR_LIBS_EIO  },
37 {NULL, NULL, NULL}
38}, * flags_ptr = NULL;
39
40int main (int argc, char * argv[]) {
41 int i, h;
42 int cflags = 0;
43 int libs   = 0;
44 char buf[1024] = {0};
45
46 if ( argc == 1 ) {
47  printf("Usage: roar-config [--version] [--libs] [--cflags] [lib]\n");
48  return 0;
49 }
50
51 for (i = 1; i < argc; i++) {
52  if ( !strcmp(argv[i], "--version") ) {
53   printf("unknown\n");
54  } else if ( !strcmp(argv[i], "--libs") ) {
55   libs   = 1;
56  } else if ( !strcmp(argv[i], "--cflags") ) {
57   cflags = 1;
58  } else if ( flags_ptr == NULL ) {
59   if ( !strncmp(argv[i], "lib", 3) )
60    argv[i] += 3;
61
62   for (h = 0; flags[h].name != NULL; h++) {
63    if ( !strcasecmp(argv[i], flags[h].name) )
64     flags_ptr = &(flags[h]);
65   }
66
67   if ( flags_ptr == NULL ) {
68    ROAR_ERR("Unknown lib: %s", argv[i]);
69    return 2;
70   }
71  } else {
72   fprintf(stderr, "Unknown option: %s\n", argv[i]);
73   return 1;
74  }
75 }
76
77 if ( flags_ptr == NULL )
78  flags_ptr = &(flags[0]);
79
80 if ( cflags )
81  strcat(buf, flags_ptr->cflags);
82
83 if ( libs )
84  strcat(buf, flags_ptr->libs);
85
86 puts(buf);
87
88 return 0;
89}
90
91//ll
Note: See TracBrowser for help on using the repository browser.