Skip to content

Commit

Permalink
LICENSE & CMake settings
Browse files Browse the repository at this point in the history
  • Loading branch information
AnatolyKalin committed Jul 5, 2023
1 parent aaa853e commit 78c9423
Show file tree
Hide file tree
Showing 12 changed files with 462 additions and 2 deletions.
4 changes: 3 additions & 1 deletion cmake-sub-project-sample/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,6 @@ cmake-build-*/
.PVS-Studio/
*.PVS-Studio.*

third_party/dxfeed-graal-cxx-api/**
third_party/dxfeed-graal-cxx-api/**
.vs/
out/
3 changes: 3 additions & 0 deletions cmake-sub-project-sample/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2023 Devexperts LLC.
# SPDX-License-Identifier: MPL-2.0

cmake_minimum_required(VERSION 3.20)
project(dxFeedGraalCxxApiSample)

Expand Down
27 changes: 27 additions & 0 deletions cmake-sub-project-sample/CMakeSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"configurations": [
{
"name": "x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": ""
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": []
}
]
}
27 changes: 27 additions & 0 deletions dll-sample/CMakeSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"configurations": [
{
"name": "x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": ""
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": []
}
]
}

0 comments on commit 78c9423

Please sign in to comment.