mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
48 lines
1.1 KiB
Text
48 lines
1.1 KiB
Text
|
|
# Copyright (c) 2012 Google Inc. All rights reserved.
|
||
|
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
|
# found in the LICENSE file.
|
||
|
|
|
||
|
|
{
|
||
|
|
'targets': [
|
||
|
|
{
|
||
|
|
'target_name': 'test_rl_md',
|
||
|
|
'type': 'executable',
|
||
|
|
'msvs_settings': {
|
||
|
|
'VCCLCompilerTool': {
|
||
|
|
'RuntimeLibrary': '2'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
'sources': ['runtime-library-md.cc'],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
'target_name': 'test_rl_mdd',
|
||
|
|
'type': 'executable',
|
||
|
|
'msvs_settings': {
|
||
|
|
'VCCLCompilerTool': {
|
||
|
|
'RuntimeLibrary': '3'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
'sources': ['runtime-library-mdd.cc'],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
'target_name': 'test_rl_mt',
|
||
|
|
'type': 'executable',
|
||
|
|
'msvs_settings': {
|
||
|
|
'VCCLCompilerTool': {
|
||
|
|
'RuntimeLibrary': '0'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
'sources': ['runtime-library-mt.cc'],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
'target_name': 'test_rl_mtd',
|
||
|
|
'type': 'executable',
|
||
|
|
'msvs_settings': {
|
||
|
|
'VCCLCompilerTool': {
|
||
|
|
'RuntimeLibrary': '1'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
'sources': ['runtime-library-mtd.cc'],
|
||
|
|
},
|
||
|
|
]
|
||
|
|
}
|