aboutsummaryrefslogtreecommitdiff
path: root/src/cli
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2022-06-29 19:03:40 +0200
committerJan200101 <sentrycraft123@gmail.com>2022-06-29 19:03:40 +0200
commitf8a584aef10a252460f2cd161826f44afdc3324b (patch)
treea0cc6ebbcffcc0632b118d01a5875bd1f40f200a /src/cli
parentd0b5c9238acc63ec6def1fd16c47f06f8c682f2e (diff)
downloadOFQT-f8a584aef10a252460f2cd161826f44afdc3324b.tar.gz
OFQT-f8a584aef10a252460f2cd161826f44afdc3324b.zip
add source sdk path fetching, directly launch OF via sdk executable
- guard Flatpak logic for non Linux UNIX systems - add /proc check on FreeBSD - allow arguments when launching OF - update README - add alternative launch options to CMakeLists.txt - add CFLAGS to all libraries and executables
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/CMakeLists.txt1
-rw-r--r--src/cli/commands.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/cli/CMakeLists.txt b/src/cli/CMakeLists.txt
index 38e5e13..2947a5b 100644
--- a/src/cli/CMakeLists.txt
+++ b/src/cli/CMakeLists.txt
@@ -12,6 +12,7 @@ set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
add_executable(${FRONTEND_NAME} ${CLI_SOURCES})
+target_compile_options(${FRONTEND_NAME} PUBLIC ${CFLAGS})
target_link_libraries(${FRONTEND_NAME} PRIVATE tvn)
target_link_libraries(${FRONTEND_NAME} PRIVATE Threads::Threads)
install(TARGETS ${FRONTEND_NAME})
diff --git a/src/cli/commands.c b/src/cli/commands.c
index 4bac2f7..d206865 100644
--- a/src/cli/commands.c
+++ b/src/cli/commands.c
@@ -211,7 +211,7 @@ static int run(int c, char** v)
goto run_cleanup;
}
- runOpenFortress();
+ runOpenFortress(v+1, (size_t)(c-1));
run_cleanup:
free(of_dir);