Skip to content

Commit

Permalink
Merge pull request #1 from GloomyGhost-MosquitoSeal/master
Browse files Browse the repository at this point in the history
Add compile scripts
  • Loading branch information
SuibianP authored Feb 21, 2020
2 parents cc03c12 + 6372540 commit f8e87c6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.15)
project(ust2lrc)

add_executable(ust2lrc src/ust2lrc.c)

install(TARGETS ust2lrc
RUNTIME DESTINATION bin
)
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ust2lrc:src/ust2lrc.c
gcc src/ust2lrc.c -o ust2lrc -O3

clean:
rm ust2lrc
File renamed without changes.

0 comments on commit f8e87c6

Please sign in to comment.