SDK: Add CMake skeleton

* New build flag BUILD_SDK
* New component "sdk"
This commit is contained in:
Dennis Klein
2019-07-01 17:13:11 +02:00
committed by Dennis Klein
parent b1c8264123
commit 3da5f4d5db
8 changed files with 120 additions and 8 deletions

15
fairmq/sdk/runFairMQ.cxx Normal file
View File

@@ -0,0 +1,15 @@
/********************************************************************************
* Copyright (C) 2019 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
* *
* This software is distributed under the terms of the *
* GNU Lesser General Public Licence (LGPL) version 3, *
* copied verbatim in the file "LICENSE" *
********************************************************************************/
#include <fairmq/sdk/Topology.h>
int main(int argc, char *argv[])
{
return 0;
}