diff --git a/CMakeLists.txt b/CMakeLists.txt index 01beee0..8bf1629 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,11 +1,6 @@ cmake_minimum_required(VERSION 3.11) # FetchContent requires CMake 3.11 project(chaiscript_extras) -if(BIICODE) - include("biicode.cmake") - RETURN() -endif() - # MINGW does not yet support C++11's concurrency features if(MINGW) option(MULTITHREAD_SUPPORT_ENABLED "Multithreaded Support Enabled" FALSE) diff --git a/biicode.cmake b/biicode.cmake deleted file mode 100644 index 672b4c2..0000000 --- a/biicode.cmake +++ /dev/null @@ -1,12 +0,0 @@ -set(BII_LIB_DEPS ${BII_LIB_DEPS} pthread dl) - -ADD_BIICODE_TARGETS() -#TARGET_INCLUDE_DIRECTORIES(${BII_BLOCK_TARGET} INTERFACE "${CMAKE_CURRENT_BINARY_DIR}/../foonathan_string_id/foonathan/string_id") - - -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) - diff --git a/biicode.conf b/biicode.conf deleted file mode 100644 index a9a6914..0000000 --- a/biicode.conf +++ /dev/null @@ -1,48 +0,0 @@ -# Biicode configuration file - -[requirements] - ChaiScript/ChaiScript: 1 - foonathan/string_id: 8 - - -[parent] - ChaiScript/ChaiScript_extras: 0 -[paths] - # Local directories to look for headers (within block) - # / - # include - -[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/catch.hpp - tests/*.cpp - -[tests] - # Manual adjust of files that define a CTest test - # test/* pattern to evaluate this test/ folder sources like tests - tests/*.cpp - -[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 - chaiscript/*.hpp: ChaiScript/ChaiScript/include - string_id/*.hpp: foonathan - -[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") -