mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
Build: Renamed main.cpp to timew.cpp
- Adjusted copyright. - Fixed common dir bug.
This commit is contained in:
parent
2c181ec07e
commit
dd1622a1e4
4 changed files with 7 additions and 4 deletions
|
@ -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})
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue