Add entry to allow make install

Always compile static and shared library, SHARED_TOXCORE is
depreciated, "make install" places files on default prefix.
This commit is contained in:
Manuel Argüelles 2013-08-23 14:10:17 -05:00
parent 4d89d63c3f
commit d746a01fbc
2 changed files with 18 additions and 7 deletions

View File

@ -63,9 +63,7 @@ mkdir build && cd build
cmake ..
```
Advance cmake options:
- `-DSHARED_TOXCORE=ON` (default `OFF`) <20> Build Core as a shared library.
- `-DUSE_NACL=ON` (default `OFF`) <20> Use NaCl library instead of libsodium.
- `-DNO_WIDECHAR=ON` (default `OFF`) <20> Disable wide char in toxic.
Note that you should call cmake on the root [`CMakeLists.txt`](/CMakeLists.txt) file only.

View File

@ -12,14 +12,27 @@ set(core_sources
util.c
ping.c)
if(SHARED_TOXCORE)
add_library(toxcore SHARED ${core_sources})
else()
add_library(toxcore ${core_sources})
endif()
set(core_headers
DHT.h
network.h
Lossless_UDP.h
net_crypto.h
friend_requests.h
LAN_discovery.h
Messenger.h
util.h
ping.h)
add_library(toxcore SHARED ${core_sources})
add_library(toxcore_static ${core_sources})
set_target_properties(toxcore_static PROPERTIES OUTPUT_NAME toxcore)
target_link_libraries(toxcore ${LINK_CRYPTO_LIBRARY})
install(TARGETS toxcore toxcore_static DESTINATION lib)
install(FILES ${core_headers} DESTINATION include)
if(WIN32)
target_link_libraries(toxcore ws2_32)
endif()