File: cmake_ios_i386.sh

package info (click to toggle)
log4cplus 2.0.8-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,592 kB
  • sloc: cpp: 53,091; sh: 10,537; ansic: 1,845; python: 1,226; perl: 263; makefile: 209; xml: 85; objc: 59
file content (20 lines) | stat: -rwxr-xr-x 738 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
scripts_dir=`cd $(dirname $0);pwd`
cd $scripts_dir/..

mkdir -p build_i386
cd build_i386

cmake -G "Xcode" -DBUILD_SHARED_LIBS="FALSE" \
                 -DIOS_PLATFORM="SIMULATOR" \
                 -DCMAKE_TOOLCHAIN_FILE=$scripts_dir/../iOS.cmake \
                 -DLOG4CPLUS_SINGLE_THREADED="TRUE" \
                 -DLOG4CPLUS_BUILD_TESTING="OFF" \
                 -DLOG4CPLUS_QT4="OFF" \
                 -DLOG4CPLUS_BUILD_LOGGINGSERVER="OFF" \
                 -DLOG4CPLUS_CONFIGURE_CHECKS_PATH=$scripts_dir/../ConfigureChecks.cmake \
                 -DCMAKE_ARCHIVE_OUTPUT_DIRECTORY=$scripts_dir/../build_i386/Binaries \
		 -DCMAKE_CXX_FLAGS="-std=c++17" \
                 $@ \
                 $scripts_dir/../..