summaryrefslogtreecommitdiffstats
path: root/Tests/FindALSA/Test/main.c
blob: d3303d076421582e14135fab5fe44f7978a76537 (plain)
1
2
3
4
5
6
7
8
9
10
#include <alsa/global.h>
#include <stdio.h>
#include <string.h>

int main()
{
  printf("Found ALSA version %s, expected version %s\n",
         snd_asoundlib_version(), CMAKE_EXPECTED_ALSA_VERSION);
  return strcmp(snd_asoundlib_version(), CMAKE_EXPECTED_ALSA_VERSION);
}