misc/libopenalbridge/tester.c
author koda
Fri, 14 Jun 2013 15:58:58 +0200
changeset 9233 a6ae0286787c
parent 3697 d5b30d6373fc
permissions -rw-r--r--
when you don't use bundled dirs, add a fake target anyway, so you can use the same cmake syntax even if the target uses a different name

#include <stdio.h>
#include "openalbridge.h"

int main (int argc, int **argv) {

    openal_init();

    openal_close();

    return 0;
}