• R/O
  • SSH

libctools: Commit

This library contains code that extends and simplifies different operations
for C language based programs.


Commit MetaInfo

Revisión400429ae0324393129f836de13e64f14e6d1d71c (tree)
Tiempo2017-01-01 18:42:20
Autors.gusarov
Commiters.gusarov

Log Message

Added support for MSVC 2017

Cambiar Resumen

Diferencia incremental

diff -r 8270965cdc0e -r 400429ae0324 .hgsubstate
--- a/.hgsubstate Sun Jan 01 04:44:13 2017 +0300
+++ b/.hgsubstate Sun Jan 01 12:42:20 2017 +0300
@@ -1,4 +1,4 @@
1-94e769e837b0d96a5334f30fdcbaa0e74d8e67ee cmake/cmake_tools
1+985ef3f082586ba904dfc648dca417ce0389337d cmake/cmake_tools
22 5013d507802becd2c434d4dbdafad45c3da5ef23 include/ctools/std/msinttypes
33 406ab938b1d534e1ccf7a0fb48fe9760359eba93 pyrepo
44 7f9f937cd195d8667002e010220f46f6909d5cbe tests/unity
diff -r 8270965cdc0e -r 400429ae0324 cmake_msvc2017.py
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cmake_msvc2017.py Sun Jan 01 12:42:20 2017 +0300
@@ -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()
Show on old repository browser