Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
483 changes: 483 additions & 0 deletions .gitignore

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions POC.pyproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{e10619c7-7881-4ab5-ba2a-0968e3e2e09e}</ProjectGuid>
<ProjectHome />
<StartupFile>poc.py</StartupFile>
<SearchPath />
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
<LaunchProvider>Standard Python launcher</LaunchProvider>
<InterpreterId />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
<PropertyGroup>
<VisualStudioVersion Condition=" '$(VisualStudioVersion)' == '' ">10.0</VisualStudioVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="poc.py" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
</Project>
34 changes: 34 additions & 0 deletions POC.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.12.35728.132
MinimumVisualStudioVersion = 10.0.40219.1
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "POC", "POC.pyproj", "{E10619C7-7881-4AB5-BA2A-0968E3E2E09E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "POCDotnet", "POCDotnet\POCDotnet.csproj", "{177848A3-D46D-4302-9C2E-03E2E15A573B}"
EndProject
Project("{54A90642-561A-4BB1-A94E-469ADEE60C69}") = "POCNodeTypescript", "POCNodeTypescript\POCNodeTypescript.esproj", "{B84BF435-A0BA-4A96-BBDD-74F66733F96F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E10619C7-7881-4AB5-BA2A-0968E3E2E09E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E10619C7-7881-4AB5-BA2A-0968E3E2E09E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{177848A3-D46D-4302-9C2E-03E2E15A573B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{177848A3-D46D-4302-9C2E-03E2E15A573B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{177848A3-D46D-4302-9C2E-03E2E15A573B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{177848A3-D46D-4302-9C2E-03E2E15A573B}.Release|Any CPU.Build.0 = Release|Any CPU
{B84BF435-A0BA-4A96-BBDD-74F66733F96F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B84BF435-A0BA-4A96-BBDD-74F66733F96F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B84BF435-A0BA-4A96-BBDD-74F66733F96F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{B84BF435-A0BA-4A96-BBDD-74F66733F96F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B84BF435-A0BA-4A96-BBDD-74F66733F96F}.Release|Any CPU.Build.0 = Release|Any CPU
{B84BF435-A0BA-4A96-BBDD-74F66733F96F}.Release|Any CPU.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
23 changes: 23 additions & 0 deletions POCCPlus/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
cmake_minimum_required(VERSION 3.16)
project(BMSSP LANGUAGES CXX)

# Require C++17 (needed for structured bindings, etc.)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

# Enable warnings
if (MSVC)
add_compile_options(/W4 /permissive-)
else()
add_compile_options(-Wall -Wextra -pedantic)
endif()

# Main executable
add_executable(bmssp
bmssp.cpp
)

# If you want timing/benchmark builds, enable optimization flags
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release)
endif()
Loading