This file contains hidden or 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
| # Order Visual Studio folder structure | |
| # Put this at the end of your CMake target | |
| # Replace this 'TARGET_SOURCES' with the list of sources (including headers files) of your target. | |
| file(GLOB_RECURSE TARGET_SOURCES CONFIGURE_DEPENDS | |
| ${CMAKE_CURRENT_SOURCE_DIR}/**.cpp | |
| ${CMAKE_CURRENT_SOURCE_DIR}/**/**.cpp | |
| ${CMAKE_CURRENT_SOURCE_DIR}/**.h | |
| ${CMAKE_CURRENT_SOURCE_DIR}/**/**.h |
This file contains hidden or 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
| #include <string> | |
| #include <cassert> | |
| #include <cmath> | |
| #include <iostream> | |
| using String = std::string; | |
| class Variant | |
| { | |
| public: |
This file contains hidden or 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
| ####################################################################### | |
| # | |
| # DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| # Version 2, December 2004 | |
| # | |
| # Copyright (C) 2004 Sam Hocevar | |
| # 14 rue de Plaisance, 75014 Paris, France | |
| # Everyone is permitted to copy and distribute verbatim or modified | |
| # copies of this license document, and changing it is allowed as long | |
| # as the name is changed. |