Initial commit

This commit is contained in:
simon 2020-01-07 10:17:38 -05:00
commit 1cb8d6525b
4 changed files with 46 additions and 0 deletions

9
.gitignore vendored Normal file
View File

@ -0,0 +1,9 @@
.idea/
*.iml
cmake_install.cmake
*.cbp
Makefile
CMakeCache.txt
CMakeFiles
cmake-build-debug
deepextract

24
CMakeLists.txt Normal file
View File

@ -0,0 +1,24 @@
cmake_minimum_required(VERSION 3.7)
project(deepextract C)
set(CMAKE_C_STANDARD 99)
option(STATIC_BUILD "Static build" off)
add_executable(
deepextract main.c
)
if (STATIC_BUILD)
target_link_libraries(
deepextract
-static
archive
acl
)
else ()
target_link_libraries(
deepextract
archive
)
endif ()

4
ci/build.sh Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env sh
cmake -D STATIC_BUILD=on .
make

9
main.c Normal file
View File

@ -0,0 +1,9 @@
#include <stdio.h>
#include <archive.h>
int main() {
struct archive *a = archive_read_new();
archive_read_disk_open(a, "");
printf("Hello, World!\n");
return 0;
}