mirror of
https://github.com/fmtlib/fmt.git
synced 2025-10-29 21:21:44 +01:00
adapted to biicode via biicode.conf, ignore.bii and CMakeLists.txt; mixed Travis
(original and biicode building)
This commit is contained in:
18
biicode/cmake/biicode.cmake
Normal file
18
biicode/cmake/biicode.cmake
Normal file
@@ -0,0 +1,18 @@
|
||||
# Initializes block variables
|
||||
INIT_BIICODE_BLOCK()
|
||||
|
||||
# Actually create targets: EXEcutables and libraries.
|
||||
ADD_BIICODE_TARGETS()
|
||||
|
||||
target_include_directories(${BII_BLOCK_TARGET} INTERFACE ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
|
||||
if (HAVE_OPEN)
|
||||
target_compile_definitions(${BII_BLOCK_TARGET} INTERFACE -DFMT_USE_FILE_DESCRIPTORS=1)
|
||||
endif ()
|
||||
|
||||
if (CMAKE_COMPILER_IS_GNUCXX)
|
||||
target_compile_options(${BII_BLOCK_TARGET} INTERFACE -Wall -Wextra -Wshadow -pedantic)
|
||||
endif ()
|
||||
if (CPP11_FLAG AND FMT_EXTRA_TESTS)
|
||||
target_compile_options(${BII_BLOCK_TARGET} INTERFACE ${CPP11_FLAG})
|
||||
endif ()
|
||||
18
biicode/samples/basic.cpp
Normal file
18
biicode/samples/basic.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#include "vitaut/cppformat/format.h"
|
||||
|
||||
class Date {
|
||||
int year_, month_, day_;
|
||||
public:
|
||||
Date(int year, int month, int day) : year_(year), month_(month), day_(day) {}
|
||||
|
||||
friend std::ostream &operator<<(std::ostream &os, const Date &d) {
|
||||
return os << d.year_ << '-' << d.month_ << '-' << d.day_;
|
||||
}
|
||||
};
|
||||
|
||||
int main(int argc, char *argv[]){
|
||||
std::string s = fmt::format("The date is {}", Date(2012, 12, 9));
|
||||
fmt::print("Hello, {}!", "world"); // uses Python-like format string syntax
|
||||
fmt::printf("\n%s", s); // uses printf format string syntax
|
||||
return 0;
|
||||
}
|
||||
30
biicode/support/travis-build.sh
Executable file
30
biicode/support/travis-build.sh
Executable file
@@ -0,0 +1,30 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ $TRAVIS_OS_NAME == linux ]; then
|
||||
sudo apt-get install libglu1-mesa-dev xorg-dev
|
||||
wget http://www.biicode.com/downloads/latest/ubuntu64
|
||||
mv ubuntu64 bii-ubuntu64.deb
|
||||
(sudo dpkg -i bii-ubuntu64.deb) && sudo apt-get -f install
|
||||
rm bii-ubuntu64.deb
|
||||
wget https://s3.amazonaws.com/biibinaries/thirdparty/cmake-3.0.2-Linux-64.tar.gz
|
||||
tar -xzf cmake-3.0.2-Linux-64.tar.gz
|
||||
sudo cp -fR cmake-3.0.2-Linux-64/* /usr
|
||||
rm -rf cmake-3.0.2-Linux-64
|
||||
rm cmake-3.0.2-Linux-64.tar.gz
|
||||
elif [ $TRAVIS_OS_NAME == osx ]; then
|
||||
wget http://www.biicode.com/downloads/latest/macos
|
||||
mv macos macos.pkg
|
||||
sudo installer -pkg macos.pkg -target /
|
||||
rm macos.pkg
|
||||
fi
|
||||
|
||||
cmake --version
|
||||
bii init biicode_project
|
||||
mkdir -p ./biicode_project/blocks/vitaut/cppformat
|
||||
shopt -s extglob
|
||||
mv !(biicode_project|cmake-3.0.2-Darwin64-universal) ./biicode_project/blocks/vitaut/cppformat
|
||||
cd biicode_project
|
||||
bii cpp:build
|
||||
ls bin/*
|
||||
./bin/vitaut_cppformat_biicode_samples_basic
|
||||
|
||||
Reference in New Issue
Block a user