Separating builds for different configs with Bazel
Welcome to the next pikoTutorial!
Let's consider a simple project with the following structure:
project/
├── .bazelrc
├── BUILD
├── main.cpp
├── WORKSPACE
The main function has 2 compile switches:
#include <iostream>
int main(int argc, char** argv)
...
pikotutorial.hashnode.dev1 min read