summaryrefslogtreecommitdiffhomepage
path: root/examples/example_02_libbtb/libbtb.cc
blob: f3d45b8f57d949885ef78333f6037bceb55055b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <BTBKit/JSONManifestBuilder.h>

#ifndef _WIN32
static auto kPath = "./posix.json";
#else
static auto kPath = ".\win64.json";
#endif

int main(int argc, char** argv) {
  auto builder = new BTB::JSONManifestBuilder();
  return builder->buildTarget(strlen(kPath), kPath);
}