Browse Source

LibCrypt: Define it as a normal library

LibCrypt has no need for being -nostdlib, especially since we just link
in LibC manually anyways.
Tim Schumacher 2 years ago
parent
commit
ac40197047
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Libraries/LibCrypt/CMakeLists.txt

+ 1 - 1
Userland/Libraries/LibCrypt/CMakeLists.txt

@@ -10,5 +10,5 @@ set(SOURCES
     crypt.cpp
 )
 
-serenity_libc(LibCrypt crypt)
+serenity_lib(LibCrypt crypt)
 target_link_libraries(LibCrypt LibC LibCryptSHA2)