mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
14 lines
267 B
CMake
14 lines
267 B
CMake
|
target_include_directories(${PROJECT_NAME}
|
||
|
PRIVATE
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
)
|
||
|
|
||
|
target_sources(${PROJECT_NAME}
|
||
|
PRIVATE
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}/main.cpp
|
||
|
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
||
|
)
|
||
|
|
||
|
add_subdirectory(Application)
|