Move all protocols into subdirs of their own

Each protocol module now resides in a subdirectory of its own.
The name of the subdirectory is the same as the name of the
library in the module's CMakeLists.txt file.
This commit is contained in:
Johan Wikman
2016-08-18 13:11:12 +03:00
parent acb19c083d
commit 47c69c3e96
15 changed files with 36 additions and 32 deletions

View File

@ -0,0 +1,3 @@
add_library(testprotocol SHARED testprotocol.c)
set_target_properties(testprotocol PROPERTIES VERSION "1.0.0")
install_module(testprotocol core)