This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set PC name | |
$computername = "undisclosed" | |
if ($env:computername -ne $computername) { | |
Rename-Computer -NewName $computername | |
} | |
# Install applications | |
choco install -y sysinternals | |
choco install -y vscode | |
choco install -y cmdermini |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "altair" | |
version = "0.1.0" | |
description = "A shiny and fast web framework" | |
license = "Apache-2.0" | |
authors = [ "Fulvio Esposito <[email protected]>" ] | |
readme = "README.md" | |
build = "build.py" | |
[tool.poetry.dependencies] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/CMakeLists.txt b/CMakeLists.txt | |
index be6fbbe..0c3e190 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -1,293 +1,292 @@ | |
# See www/CMake.html for instructions on how to build libcxx with CMake. | |
#=============================================================================== | |
# Setup Project | |
#=============================================================================== |