File: cmake

package info (click to toggle)
antlr4-cpp-runtime 4.10%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,988 kB
  • sloc: cpp: 15,909; sh: 31; makefile: 20
file content (14 lines) | stat: -rw-r--r-- 291 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

# Test the usability of CMake definitions in order to prevent regressions.

cd "$AUTOPKGTEST_TMP"

cat > CMakeLists.txt <<END
cmake_minimum_required(VERSION 3.0)
project(antlr4_runtime_autopkgtest)

find_package(antlr4-runtime REQUIRED)
END

mkdir build && cd build && cmake ..