This library contains code that extends and simplifies different operations
for C language based programs.
Revisión | 400429ae0324393129f836de13e64f14e6d1d71c (tree) |
---|---|
Tiempo | 2017-01-01 18:42:20 |
Autor | s.gusarov |
Commiter | s.gusarov |
Added support for MSVC 2017
@@ -1,4 +1,4 @@ | ||
1 | -94e769e837b0d96a5334f30fdcbaa0e74d8e67ee cmake/cmake_tools | |
1 | +985ef3f082586ba904dfc648dca417ce0389337d cmake/cmake_tools | |
2 | 2 | 5013d507802becd2c434d4dbdafad45c3da5ef23 include/ctools/std/msinttypes |
3 | 3 | 406ab938b1d534e1ccf7a0fb48fe9760359eba93 pyrepo |
4 | 4 | 7f9f937cd195d8667002e010220f46f6909d5cbe tests/unity |
@@ -0,0 +1,22 @@ | ||
1 | +#!/usr/bin/env python3 | |
2 | + | |
3 | + | |
4 | +__author__ = 'Sergey Gusarov' | |
5 | +__license__ = 'MPL 2.0, see LICENSE' | |
6 | + | |
7 | + | |
8 | +import os | |
9 | +import sys | |
10 | + | |
11 | + | |
12 | +sys.path.append(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'cmake', 'cmake_tools', 'scripts', 'build')) | |
13 | +import common | |
14 | + | |
15 | +sys.path.append(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'cmake', 'cmake_tools', 'scripts', 'build', 'msvc')) | |
16 | +import v2017 | |
17 | + | |
18 | + | |
19 | +def main(): | |
20 | + v2017.build(os.path.dirname(os.path.realpath(__file__)), 'CT', common.Language.c) | |
21 | + | |
22 | +main() |