A C++20 library for parsing THMX files (THERM 8 model exports) used in LBNL window thermal analysis tools. Built on top of XMLParser for the underlying XML parsing.
- C++20 compatible compiler (
g++11+,clang++14+, MSVC 19.30+) - CMake 3.15+ (3.21+ if you want to use the shipped CMake presets)
- XMLParser (fetched automatically)
include(FetchContent)
FetchContent_Declare(
THMXParser
GIT_REPOSITORY https://github.com/LBNL-ETA/THMXParser.git
GIT_TAG v1.1.6
)
FetchContent_MakeAvailable(THMXParser)
target_link_libraries(MyTarget PRIVATE THMXParser)Update GIT_TAG to the desired release tag.
XMLParser is downloaded automatically via CMake FetchContent on first configure. Tests build by default when THMXParser is the top-level project (-DBUILD_THMX_Parser_Tests=OFF to disable).
CMakePresets.json ships four visible configure presets, plus two hidden inheritance bases:
| Preset | When to use it |
|---|---|
default-debug / default-release |
Standard configure on any platform; CI. Fetches all dependencies from declared remotes. Picks the system default compiler (MSVC on Windows, system cc/c++ on Linux/macOS). |
local-debug / local-release |
Consume sibling working copies of dependencies instead of fetching them. |
Examples:
cmake --preset default-release
cmake --build build/default-release --parallel
ctest --test-dir build/default-release -C Release --output-on-failure
local expects a sibling directory layout — e.g. ../XMLParser next to ../THMXParser. Currently overridden:
| Dependency | Expected sibling path |
|---|---|
| XMLParser | ../XMLParser |
| GoogleTest | ../googletest |
Missing siblings fall back to the declared remote automatically, so local-* is safe to invoke even if you don't have the siblings checked out.
To use a specific compiler (vs2022-release, gcc-13-debug, clang-18-release, etc.), each developer maintains their own CMakeUserPresets.json next to CMakePresets.json. It is gitignored, read automatically by CMake (and CLion, VS Code, etc.), and stays on the developer's machine.
Personal presets inherit from one of the shipped presets (usually local, which gives you sibling-repo overrides for free) and override whatever they want. A complete realistic example — building with WSL Clang on a Windows machine, with CLion 2023.2+ routed through the WSL toolchain automatically:
{
"version": 6,
"configurePresets": [
{
"name": "clang-release",
"displayName": "clang (Release)",
"inherits": "local",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/clang-release",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++",
"CMAKE_BUILD_TYPE": "Release"
},
"vendor": {
"jetbrains.com/clion": {
"toolchain": "WSL"
}
}
}
]
}A few things going on in that one preset:
"inherits": "local"→ picks up sibling-repo overrides (when present) and the rest of the framework setup.- Bare compiler names (
clang,clang++) rather than/usr/bin/clang→ portable to any machine that has that toolchain onPATH. Use absolute paths only if the compiler isn't onPATH(e.g.C:/Program Files/LLVM/bin/clang.exe— forward slashes work in JSON, no escaping needed). "vendor.jetbrains.com/clion.toolchain"→ tells CLion (2023.2+) which configured toolchain to route this preset through. Standard names areWSL,Visual Studio,MinGW; whatever you see inSettings → Build, Execution, Deployment → Toolchains. The hint is silently ignored if the name doesn't match — no configure-time error.
Add as many of those blocks as you have toolchains you want explicit presets for (one per compiler × build type). Each gets its own binaryDir so Debug and Release artifacts don't clobber each other.
Alternative if you don't want a personal preset at all: set CC and CXX environment variables in your shell rc (~/.bashrc, PowerShell profile) before invoking cmake --preset default-release. CMake picks them up.
cmake -B build
cmake --build build --config Release --parallel
ctest --test-dir build -C Release --output-on-failure
Delete the build/ directory and re-run the configure and build commands above.
See the LICENSE file.