mirror of
https://github.com/pine64/blisp.git
synced 2025-01-31 18:10:13 +00:00
17 lines
569 B
CMake
17 lines
569 B
CMake
add_subdirectory(${CMAKE_SOURCE_DIR}/vendor/argtable3 ${CMAKE_CURRENT_BINARY_DIR}/argtable3)
|
|
|
|
add_executable(blisp src/main.c src/cmd/write.c src/util.c src/common.c src/common.h)
|
|
|
|
target_include_directories(blisp PRIVATE
|
|
"${CMAKE_SOURCE_DIR}/include"
|
|
"${CMAKE_SOURCE_DIR}/vendor/argtable3/src")
|
|
|
|
target_link_libraries(blisp PRIVATE
|
|
argtable3
|
|
libblisp_static)
|
|
|
|
if (WIN32)
|
|
target_link_libraries(blisp PRIVATE Setupapi.lib)
|
|
elseif (APPLE)
|
|
target_link_libraries(blisp PRIVATE "-framework IOKit" "-framework CoreFoundation")
|
|
endif () |