winros_make.py
Go to the documentation of this file.
00001 # Software License Agreement (BSD License)
00002 #
00003 # Copyright (c) 2013, Yujin Robot, Inc.
00004 # All rights reserved.
00005 #
00006 # Redistribution and use in source and binary forms, with or without
00007 # modification, are permitted provided that the following conditions
00008 # are met:
00009 #
00010 #  * Redistributions of source code must retain the above copyright
00011 #    notice, this list of conditions and the following disclaimer.
00012 #  * Redistributions in binary form must reproduce the above
00013 #    copyright notice, this list of conditions and the following
00014 #    disclaimer in the documentation and/or other materials provided
00015 #    with the distribution.
00016 #  * Neither the name of Yujin Robot nor the names of its
00017 #    contributors may be used to endorse or promote products derived
00018 #    from this software without specific prior written permission.
00019 #
00020 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00021 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00022 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00023 # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00024 # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00025 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00026 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00027 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00028 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00029 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00030 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00031 # POSSIBILITY OF SUCH DAMAGE.
00032 
00033 from __future__ import print_function
00034 import sys
00035 import os
00036 import os.path
00037 import shutil
00038 import subprocess
00039 import win_ros
00040 import argparse
00041 
00042 def parse_args():
00043     parser = argparse.ArgumentParser(description="\
00044         Runs cmake/nmake on winros sources using configuration in config.cmake:\n\n\
00045   1. Expects sources are in ./src \n\
00046   2. Expects a toplevel cmake file in ./src/CMakeList.txt\n\
00047   3. Expects configuration settings in ./config.cmake\n",
00048         epilog="See http://www.ros.org/wiki/win_python_build_tools for details.",
00049         formatter_class=argparse.RawTextHelpFormatter )
00050     parser.add_argument('-p', '--pre-clean', action='store_true', help='clean the build directory (not config.cmake) before recompiling [false]')
00051     group = parser.add_mutually_exclusive_group()
00052     group.add_argument('-c', '--cmake-only', action='store_true', help='do not compile, cmake configuration only [false]')
00053     group.add_argument('-i', '--install', action='store_true', help='build and install sdk [false]')
00054 #    parser.add_argument('path', type=str, default=".",
00055 #                   help='base path for the workspace')
00056     return parser.parse_args()
00057 
00058 if __name__ == "__main__":
00059     args = parse_args()
00060     ws_path = os.path.abspath(".")
00061     build_path = os.path.join(ws_path, 'build')
00062     devel_path = os.path.join(ws_path, 'devel')
00063     src_path = os.path.join(ws_path, 'src')
00064     ##############################
00065     # Valid workspace
00066     ##############################
00067     error_str = win_ros.is_invalid_workspace(src_path)
00068     if error_str:
00069         sys.exit(error_str)
00070     ##############################
00071     # Valid build configuration
00072     ##############################
00073     if not os.path.isfile(os.path.join(ws_path, "config.cmake")):
00074         print("--- no build configuration found (./config.cmake), creating a default.")
00075         win_ros.write_cmake_files(ws_path)
00076         shutil.rmtree(build_path, ignore_errors=True)
00077         os.mkdir(build_path)
00078     ##############################
00079     # Building
00080     ##############################
00081     if args.pre_clean:
00082         print("--- cleaning current cmake and build temporaries (not the build configuration).")
00083         shutil.rmtree(build_path, ignore_errors=True)
00084         shutil.rmtree(devel_path, ignore_errors=True)
00085     if os.path.isfile(os.path.join(build_path, 'Makefile')):
00086         if args.cmake_only:
00087             win_ros.execute_cmake(src_path, build_path)
00088         elif args.install:
00089             win_ros.execute_nmake_install(build_path)
00090         else:
00091             win_ros.execute_nmake(build_path)
00092     else:
00093         win_ros.execute_cmake(src_path, build_path)
00094         if not args.cmake_only:
00095             if args.install:
00096                 win_ros.execute_nmake_install(build_path)
00097             else:
00098                 win_ros.execute_nmake(build_path)


win_python_build_tools
Author(s): Daniel Stonier
autogenerated on Wed Sep 16 2015 07:09:59