summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml16
-rw-r--r--projects/biicode/blocks/kirkshoop/.DS_Storebin6148 -> 0 bytes
-rw-r--r--projects/biicode/blocks/kirkshoop/rxcpp/CMakeLists.txt87
-rw-r--r--projects/biicode/blocks/kirkshoop/rxcpp/README.bii.md6
-rw-r--r--projects/biicode/blocks/kirkshoop/rxcpp/biicode.conf44
5 files changed, 1 insertions, 152 deletions
diff --git a/.travis.yml b/.travis.yml
index 5a53741..37c61d2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -48,14 +48,13 @@ before_install:
- which $CXX
- which $CC
############################################################################
- # Install publish tools (doxygen, biicode)
+ # Install publish tools (doxygen)
############################################################################
- |
if [[ "$PUBLISH_DOCS" == "On" ]]; then
sudo apt-add-repository -y ppa:libreoffice/libreoffice-4-2
sudo apt-get update || echo "ignore update failure"
sudo apt-get install doxygen
- wget http://apt.biicode.com/install.sh && chmod +x install.sh && ./install.sh
fi
############################################################################
# Install a recent CMake
@@ -105,12 +104,6 @@ after_success:
- |
if [[ "$PUBLISH_DOCS" == "On" ]]; then
sh projects/scripts/travis-doxygen.sh
- cd projects/biicode
- cp ../../AUTHORS.txt ./blocks/kirkshoop/rxcpp/AUTHORS.txt
- cp ../../Rx/v2/src/license.txt ./blocks/kirkshoop/rxcpp/license.txt
- cp -r ../../Rx/v2/src/rxcpp/* ./blocks/kirkshoop/rxcpp/*
- bii setup:cpp
- bii init
fi
branches:
only:
@@ -136,10 +129,3 @@ deploy:
on:
tags: true
repo: Reactive-Extensions/RxCpp
- - provider: biicode
- user: kirkshoop
- password:
- secure: OdyvgvS+3tKWHXo9sq/ZRkG2RqoEui+jBJORKyffm9sCGlj3VbeQ8r+b1I6y2H2Wbg4E6+hVHgYtLVrsUfGP81a+WQYecHWnn4R5B12FWhiRUk16zwK//qlXt3adwWkVX+L0I8InpCmRd44MJbfCmGUZ9zI9rtkQs0ljfTqwJcI=
- skip_cleanup: true
- on:
- repo: Reactive-Extensions/RxCpp
diff --git a/projects/biicode/blocks/kirkshoop/.DS_Store b/projects/biicode/blocks/kirkshoop/.DS_Store
deleted file mode 100644
index 80bc736..0000000
--- a/projects/biicode/blocks/kirkshoop/.DS_Store
+++ /dev/null
Binary files differ
diff --git a/projects/biicode/blocks/kirkshoop/rxcpp/CMakeLists.txt b/projects/biicode/blocks/kirkshoop/rxcpp/CMakeLists.txt
deleted file mode 100644
index 409230f..0000000
--- a/projects/biicode/blocks/kirkshoop/rxcpp/CMakeLists.txt
+++ /dev/null
@@ -1,87 +0,0 @@
-
-# Yes, INIT_BIICODE_BLOCKS() is no longer necessary
-ADD_BIICODE_TARGETS()
-
-# You can safely delete lines from here...
-
-###############################################################################
-# REFERENCE #
-###############################################################################
-#
-# This CMakeLists.txt file helps defining your block building and compiling
-# To learn more about the CMake use with biicode, visit http://docs.biicode.com/c++.html
-#
-# ----------------------------------------------------
-# NEW FEATURE! Include cmake files from remote blocks:
-# -----------------------------------------------------
-# Now you can handle cmake dependencies alike you do with c/c++:
-#
-# INCLUDE(user/block/myrecipe) # include myrecipe.cmake from remote user/block
-#
-# > EXAMPLE: Include our recipes and activate C++11 in your block (http://www.biicode.com/biicode/cmake)
-#
-# INCLUDE(biicode/cmake/tools) # Include tools.cmake file from "cmake" block from the "biicode" user
-# ACTIVATE_CPP11(INTERFACE ${BII_BLOCK_TARGET})
-#
-# Remember to run "bii find" to download out cmake tools file
-#
-# ---------------------
-# INIT_BIICODE_BLOCK()
-# ---------------------
-# This function creates several helper variables as ${BII_BLOCK_NAME} and ${BII_BLOCK_USER}
-# Also it loads variables from the cmake/bii_user_block_vars.cmake
-# ${BII_LIB_SRC} File list to create the library
-# ${BII_LIB_TYPE} Empty (default, STATIC most casess) STATIC or SHARED
-# ${BII_LIB_DEPS} Dependencies to other libraries (user2_block2, user3_blockX)
-# ${BII_LIB_SYSTEM_HEADERS} System linking requirements as windows.h, pthread.h, etc
-#
-# You can use or modify them here, for example, to add or remove files from targets based on OS
-# Or use typical cmake configurations done BEFORE defining targets. Examples:
-# ADD_DEFINITIONS(-DFOO)
-# FIND_PACKAGE(OpenGL QUIET)
-# You can add INCLUDE_DIRECTORIES here too
-#
-# ---------------------
-# ADD_BIICODE_TARGETS()
-# ---------------------
-#
-# This function creates the following variables:
-# ${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)
-#
-# You can add private include directories to the Lib (if existing)
-#
-# > EXAMPLE: Link with pthread:
-#
-# TARGET_LINK_LIBRARIES(${BII_BLOCK_TARGET} INTERFACE pthread)
-# or link against library:
-# TARGET_LINK_LIBRARIES(${BII_LIB_TARGET} PUBLIC pthread)
-# or directly use the library target name:
-# TARGET_LINK_LIBRARIES(user_block 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")
-# \ No newline at end of file
diff --git a/projects/biicode/blocks/kirkshoop/rxcpp/README.bii.md b/projects/biicode/blocks/kirkshoop/rxcpp/README.bii.md
deleted file mode 100644
index 092c98c..0000000
--- a/projects/biicode/blocks/kirkshoop/rxcpp/README.bii.md
+++ /dev/null
@@ -1,6 +0,0 @@
-# rxcpp bii block
-
-## some samples using this block are:
-
- - kirkshoop/rxcpp_sdltext
- - kirkshoop/rxcpp_wintext \ No newline at end of file
diff --git a/projects/biicode/blocks/kirkshoop/rxcpp/biicode.conf b/projects/biicode/blocks/kirkshoop/rxcpp/biicode.conf
deleted file mode 100644
index b37ce83..0000000
--- a/projects/biicode/blocks/kirkshoop/rxcpp/biicode.conf
+++ /dev/null
@@ -1,44 +0,0 @@
-# Biicode configuration file
-
-[requirements]
- # Blocks and versions this block depends on e.g.
- # user/depblock1: 3
- # user2/depblock2(track) @tag
-
-[parent]
- kirkshoop/rxcpp: 0
-
-[paths]
- # Local directories to look for headers (within block)
- # /
- # include
- rxcpp
-
-[dependencies]
- # Manual adjust file implicit dependencies, add (+), remove (-), or overwrite (=)
- # hello.h + hello_imp.cpp hello_imp2.cpp
- # *.h + *.cpp
-
-[mains]
- # Manual adjust of files that define an executable
- # !main.cpp # Do not build executable from this file
- # main2.cpp # Build it (it doesnt have a main() function, but maybe it includes it)
-
-[tests]
- # Manual adjust of files that define a CTest test
- # test/* pattern to evaluate this test/ folder sources like tests
-
-[hooks]
- # These are defined equal to [dependencies],files names matching bii*stage*hook.py
- # will be launched as python scripts at stage = {post_process, clean}
- # CMakeLists.txt + bii/my_post_process1_hook.py bii_clean_hook.py
-
-[includes]
- # Mapping of include patterns to external blocks
- # hello*.h: user3/depblock # includes will be processed as user3/depblock/hello*.h
-
-[data]
- # Manually define data files dependencies, that will be copied to bin for execution
- # By default they are copied to bin/user/block/... which should be taken into account
- # when loading from disk such data
- # image.cpp + image.jpg # code should write open("user/block/image.jpg")