diff options
author | rtk0c <[email protected]> | 2022-07-01 19:47:14 +0000 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-07-01 19:47:14 +0000 |
commit | 7f4172d1696ebec6078188ec8dbd9e23ed075aa3 (patch) | |
tree | d18658f0e22e905d9d3cfae7eb2fb48fe00eed38 /server-v1/source | |
parent | 530cfc096962be4d7114335466c449420896ff13 (diff) |
Convert server-v1 to use file(GLOB)
git-svn-id: file:///home/arch/svn/epistmool/trunk@11 71f44415-077c-4ad7-a976-72ddbf76608f
Diffstat (limited to 'server-v1/source')
-rw-r--r-- | server-v1/source/EpistmoolServer/CMakeLists.txt | 10 | ||||
-rw-r--r-- | server-v1/source/EpistmoolServer/Protocol/CMakeLists.txt | 6 | ||||
-rw-r--r-- | server-v1/source/EpistmoolServer/Workspace/CMakeLists.txt | 3 | ||||
-rw-r--r-- | server-v1/source/header_only.c | 1 |
4 files changed, 1 insertions, 19 deletions
diff --git a/server-v1/source/EpistmoolServer/CMakeLists.txt b/server-v1/source/EpistmoolServer/CMakeLists.txt deleted file mode 100644 index c98c901..0000000 --- a/server-v1/source/EpistmoolServer/CMakeLists.txt +++ /dev/null @@ -1,10 +0,0 @@ -target_sources(EpistmoolServer PRIVATE - fwd.hpp - Connection.hpp Connection.cpp - Session.hpp Session.cpp - Server.hpp Server.cpp - ServerProperties.hpp ServerProperties.cpp -) - -add_subdirectory(Protocol) -add_subdirectory(Workspace) diff --git a/server-v1/source/EpistmoolServer/Protocol/CMakeLists.txt b/server-v1/source/EpistmoolServer/Protocol/CMakeLists.txt deleted file mode 100644 index 54f1da7..0000000 --- a/server-v1/source/EpistmoolServer/Protocol/CMakeLists.txt +++ /dev/null @@ -1,6 +0,0 @@ -target_sources(EpistmoolServer PRIVATE - fwd.hpp - Command.hpp Command.cpp - Error.hpp Error.cpp - Version.hpp -) diff --git a/server-v1/source/EpistmoolServer/Workspace/CMakeLists.txt b/server-v1/source/EpistmoolServer/Workspace/CMakeLists.txt deleted file mode 100644 index 6ef6d59..0000000 --- a/server-v1/source/EpistmoolServer/Workspace/CMakeLists.txt +++ /dev/null @@ -1,3 +0,0 @@ -target_sources(EpistmoolServer PRIVATE - fwd.hpp -) diff --git a/server-v1/source/header_only.c b/server-v1/source/header_only.c new file mode 100644 index 0000000..6795f80 --- /dev/null +++ b/server-v1/source/header_only.c @@ -0,0 +1 @@ +// This file includes all header only libraries' implementation parts |