Build: Renamed main.cpp to timew.cpp

- Adjusted copyright.
- Fixed common dir bug.
This commit is contained in:
Paul Beckingham 2015-12-20 11:50:18 -05:00
parent 2c181ec07e
commit dd1622a1e4
4 changed files with 7 additions and 4 deletions

View file

@ -1,13 +1,13 @@
cmake_minimum_required (VERSION 2.8)
include_directories (${CMAKE_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/src
${CMAKE_SOURCE_DIR}/common
${CMAKE_SOURCE_DIR}/src/common
${TIMEW_INCLUDE_DIRS})
set (timew_SRCS LR0.cpp LR0.h)
add_library (timew STATIC ${timew_SRCS})
add_executable (timew_executable main.cpp)
add_executable (timew_executable timew.cpp)
target_link_libraries (timew_executable common timew ${TIMEW_LIBRARIES})

View file

@ -1,6 +1,6 @@
////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2006 - 2015, Paul Beckingham, Federico Hernandez.
// Copyright 2015, Paul Beckingham, Federico Hernandez.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal

View file

@ -1,6 +1,6 @@
////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2006 - 2015, Paul Beckingham, Federico Hernandez.
// Copyright 2015, Paul Beckingham, Federico Hernandez.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal

View file

@ -44,6 +44,9 @@ int main (int argc, const char** argv)
try
{
// TODO Initialize configuration.
// TODO Load grammar.
// TODO Load rules.
// TODO Parse CLI.
// TODO Dispatch to commands.
}