Merge pull request #518 from manuel-arguelles/make_install

Add entry to allow make install. Always build static and shared libraries
This commit is contained in:
irungentoo 2013-08-23 12:29:30 -07:00
commit 05f3ae1734
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()