1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
project(Datafile) add_executable( Datafile Archive.cpp Main.cpp ) target_include_directories( Datafile PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ) target_link_libraries( Datafile PUBLIC Zlib::zlib ) target_compile_definitions( Datafile PUBLIC UNICODE ) install(TARGETS Datafile RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX})