mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-22 13:44:34 +03:00
20 lines
347 B
Text
20 lines
347 B
Text
|
set(TARGET_NAME NavRemove${BITNESS})
|
||
|
|
||
|
include_directories(
|
||
|
${CMAKE_CURRENT_BINARY_DIR}/../
|
||
|
)
|
||
|
|
||
|
add_executable(${TARGET_NAME} WIN32
|
||
|
main.cpp
|
||
|
../ConfigIni.cpp
|
||
|
${CMAKE_CURRENT_BINARY_DIR}/../version.rc
|
||
|
)
|
||
|
|
||
|
target_link_libraries(${TARGET_NAME}
|
||
|
NCToolsShared
|
||
|
)
|
||
|
|
||
|
install(TARGETS ${TARGET_NAME}
|
||
|
DESTINATION tools/NCNavRemove/exe/
|
||
|
)
|