Initial commit
This commit is contained in:
commit
7802b00e85
12 changed files with 126 additions and 0 deletions
10
CMakeLists.txt
Normal file
10
CMakeLists.txt
Normal file
|
@ -0,0 +1,10 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
project(Walltaker95 VERSION 0.1)
|
||||
add_executable(wt95 src/main.cpp wt95.rc)
|
||||
find_package( CURL REQUIRED )
|
||||
ENABLE_LANGUAGE(RC)
|
||||
SET(CMAKE_RC_COMPILE_OBJECT
|
||||
"<CMAKE_RC_COMPILER> <FLAGS> -O coff <DEFINES> -i <SOURCE> -o <OBJECT>")
|
||||
set(CMAKE_EXE_LINKER_FLAGS "-static-libgcc -static-libstdc++ -static")
|
||||
add_compile_options(-g)
|
||||
target_link_libraries(wt95 CURL::libcurl)
|
Loading…
Add table
Add a link
Reference in a new issue