Changeset 68 in pacpusframework for trunk/scripts/build-msvc.bat


Ignore:
Timestamp:
01/10/13 00:04:21 (11 years ago)
Author:
Marek Kurdej
Message:

Minor: scripts/build-msvc.bat: changed Rem to ::

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/build-msvc.bat

    r64 r68  
    1717
    1818:preamble
    19 Rem Check the args
     19:: Check the args
    2020if "%1" == "" goto usage
    21 Rem Check if the user is in the build directory
     21:: Check if the user is in the build directory
    2222if not exist "%CD%\..\README.txt" goto usage
    23 Rem Args ok, go to build
     23:: Args ok, go to build
    2424goto build
    2525
     
    3838
    3939:build
    40 Rem Root of the repository
     40:: Root of the repository
    4141set root_dir=%CD%\..
    42 Rem Initialize the environment of log4cxx
     42:: Initialize the environment of log4cxx
    4343set LOG4CXX_ROOT=%root_dir%\3rd\apache-log4cxx
    44 Rem Initialize the build
     44:: Initialize the build
    4545cmake .. -DPACPUS_INSTALL_DIR="%1" -DPACPUS_INSTALL_3RD=TRUE -DPACPUS_USE_LOG=TRUE
    46 Rem Build in debug and release
     46:: Build in debug and release
    4747msbuild Pacpus.sln /p:Configuration=Debug
    4848msbuild Pacpus.sln /p:Configuration=Release
    49 Rem Install
     49:: Install
    5050msbuild INSTALL.vcxproj /p:Configuration=Debug
    5151msbuild INSTALL.vcxproj /p:Configuration=Release
Note: See TracChangeset for help on using the changeset viewer.