This library contains code that extends and simplifies different operations
for C language based programs.
Revisión | 5b1913a9e3d135fe4da9775dd956fac91ece1656 (tree) |
---|---|
Tiempo | 2017-01-15 10:16:30 |
Autor | s.gusarov |
Commiter | s.gusarov |
Added cmake_msvc2013 script
@@ -1,4 +1,4 @@ | ||
1 | -bdc913d220989f85ad0cdffc3dc9dc931794e3ec cmake/cmake_tools | |
1 | +81c73274de7add567414247ec885ef0da02431bb cmake/cmake_tools | |
2 | 2 | 5013d507802becd2c434d4dbdafad45c3da5ef23 include/ctools/std/msinttypes |
3 | 3 | 19863895614c1d2ddaf55b3873effddf39d74c4f 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 v2013 | |
17 | + | |
18 | + | |
19 | +def main(): | |
20 | + v2013.build(os.path.dirname(os.path.realpath(__file__)), 'CT', common.Language.c) | |
21 | + | |
22 | +main() |