Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change import format to yaml #83

Merged
merged 6 commits into from Nov 29, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Expand Up @@ -28,14 +28,14 @@ if (WIN32)
add_definitions(-DYAML_DECLARE_STATIC)
endif()

add_executable(vita-libs-gen vita-libs-gen.c vita-import.c vita-import-parse.c)
add_executable(vita-libs-gen vita-libs-gen.c vita-import.c vita-import-parse.c yamltree.c yamltreeutil.c)
add_executable(vita-elf-create vita-elf-create.c elf-create-argp.c vita-elf.c vita-import.c vita-import-parse.c vita-export-parse.c elf-defs.c sce-elf.c varray.c elf-utils.c sha256.c yamltree.c yamltreeutil.c)
add_executable(vita-mksfoex vita-mksfoex.c getopt_long.c)
add_executable(vita-make-fself vita-make-fself.c)
add_executable(vita-pack-vpk vita-pack-vpk.c)
add_executable(vita-elf-export vita-elf-export.c yamltree.c yamltreeutil.c sha256.c vita-export-parse.c)

target_link_libraries(vita-libs-gen ${Jansson_LIBRARIES})
target_link_libraries(vita-libs-gen ${Jansson_LIBRARIES} ${libyaml_LIBRARIES})
target_link_libraries(vita-elf-create ${Jansson_LIBRARIES} ${libelf_LIBRARIES} ${libyaml_LIBRARIES})
target_link_libraries(vita-pack-vpk ${libzip_LIBRARIES} ${zlib_LIBRARIES})
target_link_libraries(vita-elf-export ${Jansson_LIBRARIES} ${libyaml_LIBRARIES})
Expand Down