Changeset 68 in pacpusframework for trunk/scripts
- Timestamp:
- Jan 10, 2013, 12:04:21 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/build-msvc.bat
r64 r68 17 17 18 18 :preamble 19 RemCheck the args19 :: Check the args 20 20 if "%1" == "" goto usage 21 RemCheck if the user is in the build directory21 :: Check if the user is in the build directory 22 22 if not exist "%CD%\..\README.txt" goto usage 23 RemArgs ok, go to build23 :: Args ok, go to build 24 24 goto build 25 25 … … 38 38 39 39 :build 40 RemRoot of the repository40 :: Root of the repository 41 41 set root_dir=%CD%\.. 42 RemInitialize the environment of log4cxx42 :: Initialize the environment of log4cxx 43 43 set LOG4CXX_ROOT=%root_dir%\3rd\apache-log4cxx 44 RemInitialize the build44 :: Initialize the build 45 45 cmake .. -DPACPUS_INSTALL_DIR="%1" -DPACPUS_INSTALL_3RD=TRUE -DPACPUS_USE_LOG=TRUE 46 RemBuild in debug and release46 :: Build in debug and release 47 47 msbuild Pacpus.sln /p:Configuration=Debug 48 48 msbuild Pacpus.sln /p:Configuration=Release 49 RemInstall49 :: Install 50 50 msbuild INSTALL.vcxproj /p:Configuration=Debug 51 51 msbuild INSTALL.vcxproj /p:Configuration=Release
Note:
See TracChangeset
for help on using the changeset viewer.