Skip to content

Commit

Permalink
join the biicode revolution!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
eranpeer committed May 2, 2015
1 parent 7245f29 commit 8728fb7
Show file tree
Hide file tree
Showing 5 changed files with 80 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ TestResults/
# CLion files
.idea/

# bii
bii/

# temporary
*.tmp
*.d
Expand Down
61 changes: 61 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
IF(BIICODE)
ADD_BII_TARGETS()
ENDIF()

#LIST(APPEND BII_LIB_SRC tests/argument_matching_tests.cpp)
###############################################################################
# HELP #
###############################################################################
#
# This CMakeLists.txt file helps defining your block builds
# To learn more visit http://docs.biicode.com/c++.html
#
# To include published cmake scripts:
# 1. INCLUDE(user/block/myrecipe) # include myrecipe.cmake from remote user/block
# 2. Remember to execute bii find
# Example:
# INCLUDE(biicode/cmake/tools) # Include tools.cmake file from cmake block from "biicode" user
# ACTIVATE_CPP11(INTERFACE ${BII_BLOCK_TARGET})
#
# Useful variables:
# To be modified BEFORE the call to ADD_BII_TARGETS()
# ${BII_LIB_SRC} File list to create the library
#
# To be modified AFTER the call to ADD_BII_TARGETS()
# ${BII_BLOCK_TARGET} Interface (no files) target for convenient configuration of all
# targets in this block, as the rest of targets always depend on it
# has name in the form "user_block_interface"
# ${BII_LIB_TARGET} Target library name, usually in the form "user_block". May not exist
# if BII_LIB_SRC is empty
# ${BII_BLOCK_TARGETS} List of all targets defined in this block
# ${BII_BLOCK_EXES} List of executables targets defined in this block
# ${BII_exe_name_TARGET}: Executable target (e.g. ${BII_main_TARGET}. You can also use
# directly the name of the executable target (e.g. user_block_main)
#
# > EXAMPLE: Add include directories to all targets of this block
#
# TARGET_INCLUDE_DIRECTORIES(${BII_BLOCK_TARGET} INTERFACE myincludedir)
#
# > EXAMPLE: Link with pthread:
#
# TARGET_LINK_LIBRARIES(${BII_BLOCK_TARGET} INTERFACE pthread)
# or link against library:
# TARGET_LINK_LIBRARIES(${BII_LIB_TARGET} PUBLIC pthread)
#
# NOTE: This can be also done adding pthread to ${BII_LIB_DEPS}
# BEFORE calling ADD_BIICODE_TARGETS()
#
# > EXAMPLE: how to activate C++11
#
# IF(APPLE)
# TARGET_COMPILE_OPTIONS(${BII_BLOCK_TARGET} INTERFACE "-std=c++11 -stdlib=libc++")
# ELSEIF (WIN32 OR UNIX)
# TARGET_COMPILE_OPTIONS(${BII_BLOCK_TARGET} INTERFACE "-std=c++11")
# ENDIF(APPLE)
#
# > EXAMPLE: Set properties to target
#
# SET_TARGET_PROPERTIES(${BII_BLOCK_TARGET} PROPERTIES COMPILE_DEFINITIONS "IOV_MAX=255")
#


11 changes: 11 additions & 0 deletions biicode.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Biicode configuration file

[requirements]

[parent]
eranpeer/FakeIt: 0

[paths]
include

[dependencies]
5 changes: 5 additions & 0 deletions ignore.bii
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build/*
tests/*
samples/*
docs/*
bin/*
1 change: 0 additions & 1 deletion include/fakeit/api_functors.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#pragma once

#include <fakeit_instance.hpp>
#include <fakeit/UsingFunctor.hpp>
#include <fakeit/VerifyFunctor.hpp>
#include <fakeit/VerifyNoOtherInvocationsFunctor.hpp>
Expand Down

0 comments on commit 8728fb7

Please sign in to comment.