commit aee72b33747c3438ca463f27c4caeaf9fe97fadc parent 69d4f7e0ce0dd562d9903ac809f54d6eb317e0f3 Author: Alexandre Bique <bique.alexandre@gmail.com> Date: Wed, 12 Nov 2014 19:43:49 +0100 Littles changes Diffstat:
7 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -5,4 +5,5 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") include_directories(include) +add_subdirectory(tools) add_subdirectory(examples) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt @@ -1,2 +1 @@ -add_subdirectory(clap-info) add_subdirectory(thyns) diff --git a/spec.rst b/spec.rst @@ -165,7 +165,7 @@ general plugin/host information. | | version 1.0.0 | +---------------------+---------------------------------------------------------------+ | id | Unique identifier of the plugin. It should never change. It | -| | should be the same on 32bits or 64bits or whatever. | +| | should be the same on any plateform. | +---------------------+---------------------------------------------------------------+ | name | The name of the product. | +---------------------+---------------------------------------------------------------+ diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory(clap-info) diff --git a/examples/clap-info/.gitignore b/tools/clap-info/.gitignore diff --git a/examples/clap-info/CMakeLists.txt b/tools/clap-info/CMakeLists.txt diff --git a/examples/clap-info/clap-info.c b/tools/clap-info/clap-info.c