feat: added binary output directories to low-level_setup PROPERTIES
This commit is contained in:
parent
89fa4b5f35
commit
c0ef040686
|
|
@ -1,3 +1,9 @@
|
||||||
|
set(low-level_setup PROPERTIES
|
||||||
|
CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/../bin"
|
||||||
|
CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/../lib"
|
||||||
|
CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/../lib"
|
||||||
|
)
|
||||||
|
|
||||||
add_executable(low-level_setup
|
add_executable(low-level_setup
|
||||||
main.cpp
|
main.cpp
|
||||||
project.cpp
|
project.cpp
|
||||||
|
|
@ -7,6 +13,3 @@ target_link_libraries(low-level_setup
|
||||||
PUBLIC
|
PUBLIC
|
||||||
ImGui-SFML::ImGui-SFML
|
ImGui-SFML::ImGui-SFML
|
||||||
)
|
)
|
||||||
|
|
||||||
# Do we need this?
|
|
||||||
# include(Install.cmake)
|
|
||||||
Loading…
Reference in a new issue