mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-04-03 18:00:08 +03:00
14 lines
302 B
CMake
Executable File
14 lines
302 B
CMake
Executable File
add_executable(hamcorebuilder
|
|
main.c
|
|
FileSystem.c
|
|
FileSystem.h
|
|
)
|
|
|
|
if(WIN32)
|
|
target_compile_definitions(hamcorebuilder PRIVATE "OS_WINDOWS")
|
|
endif()
|
|
|
|
target_include_directories(hamcorebuilder PRIVATE "${TOP_DIRECTORY}/3rdparty/tinydir")
|
|
|
|
target_link_libraries(hamcorebuilder PRIVATE libhamcore)
|