mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-26 11:51:20 +01:00
e241496f3e
(strange behavior with bld.stlib)
14 lines
254 B
Python
14 lines
254 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def build(bld):
|
|
bld.recurse('test0 test1')
|
|
|
|
# can't use bld.stlib
|
|
bld(
|
|
# cxxstlib not required?!
|
|
features = 'cxx',
|
|
source = 'gtest_main.cc',
|
|
use = 'GTEST',
|
|
target = 'unittestmain')
|