summaryrefslogtreecommitdiff
path: root/test cases/unit/115 c cpp stds/meson.build
blob: fb68af6100087d3e54f46202163b2baa5b00f566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# SPDX-License-Identifier: Apache-2.0
# Copyright © 2024 Intel Corporation

project(
  'c cpp stds',
  default_options: [
    'c_std=gnu89,c89',
    'cpp_std=gnu++98,vc++11',
  ],
)

if get_option('with-c')
  add_languages('c', 'cpp', native : false)
endif
if get_option('with-objc')
  add_languages('objc', 'objcpp', native : false)
endif