Add tool infrastructure

This commit is contained in:
Jonathan Müller 2017-04-08 10:52:54 +02:00
commit d66d6d26af
6 changed files with 51 additions and 2 deletions

8
tool/CMakeLists.txt Normal file
View file

@ -0,0 +1,8 @@
# Copyright (C) 2017 Jonathan Müller <jonathanmueller.dev@gmail.com>
# This file is subject to the license terms in the LICENSE file
# found in the top-level directory of this distribution.
add_executable(cppast_tool main.cpp)
target_link_libraries(cppast_tool PUBLIC cppast cxxopts)
set_target_properties(cppast_tool PROPERTIES CXX_STANDARD 11
OUTPUT_NAME cppast)

9
tool/main.cpp Normal file
View file

@ -0,0 +1,9 @@
// Copyright (C) 2017 Jonathan Müller <jonathanmueller.dev@gmail.com>
// This file is subject to the license terms in the LICENSE file
// found in the top-level directory of this distribution.
#include <iostream>
int main()
{
}