initial setup
This commit is contained in:
18
src/CMakeLists.txt
Normal file
18
src/CMakeLists.txt
Normal file
@@ -0,0 +1,18 @@
|
||||
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
|
||||
|
||||
project(tox_ngc_ft1_tool C CXX)
|
||||
|
||||
########################################
|
||||
|
||||
add_executable(tox_ngc_ft1_tool
|
||||
./main.cpp
|
||||
)
|
||||
|
||||
target_compile_features(tox_ngc_ft1_tool PUBLIC cxx_std_17)
|
||||
|
||||
target_link_libraries(tox_ngc_ft1_tool
|
||||
toxcore
|
||||
tox_ngc_ext
|
||||
tox_ngc_ft1
|
||||
)
|
||||
|
7
src/main.cpp
Normal file
7
src/main.cpp
Normal file
@@ -0,0 +1,7 @@
|
||||
#include <tox/tox.h>
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user