diff --git a/client/.gitignore b/client/.gitignore index 3b702c283..86106bc3c 100644 --- a/client/.gitignore +++ b/client/.gitignore @@ -1,2 +1,4 @@ WaykClient + +DotNetClient \ No newline at end of file diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index ee294378b..2543bb028 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -20,7 +20,7 @@ add_subdirectory(common) if(WIN32) - add_subdirectory(Windows) + add_subdirectory(Windows) else() if(WITH_SAMPLE) add_subdirectory(Sample) @@ -55,3 +55,6 @@ if(WITH_WAYK) add_subdirectory(WaykClient) endif() +if (WITH_DOTNET) + add_subdirectory(DotNetClient) +endif() \ No newline at end of file