Skip to content

Commit

Permalink
utils/ :: Rename 'utils' to 'lib'
Browse files Browse the repository at this point in the history
  • Loading branch information
LeotendoDev committed Mar 2, 2022
1 parent c1a353f commit 1e6b15b
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(fox LANGUAGES C)
add_executable(fox main.c parser/token.c utils/usage.c compiler/compiler.c)
add_executable(fox main.c parser/token.c lib/usage.c compiler/compiler.c)


File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <errno.h>

#include "parser/token.h"
#include "utils/usage.h"
#include "lib/usage.h"
#include "compiler/compiler.h"

int main(int argc, char** argv)
Expand Down

0 comments on commit 1e6b15b

Please sign in to comment.