File tree Expand file tree Collapse file tree 2 files changed +4
-15
lines changed Expand file tree Collapse file tree 2 files changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -352,12 +352,8 @@ namespace Langulus::Entity
352
352
// File postfix
353
353
#if LANGULUS_OS(WINDOWS)
354
354
path += " .dll" ;
355
- #elif LANGULUS_OS(LINUX)
356
- path += " .so" ;
357
- #elif LANGULUS_COMPILER(WASM)
358
- path += " .wasm" ;
359
355
#else
360
- # error Unsupported OS
356
+ path += " .so " ;
361
357
#endif
362
358
363
359
// Make sure string ends with terminator
Original file line number Diff line number Diff line change @@ -4,14 +4,7 @@ file(GLOB_RECURSE
4
4
*.cpp
5
5
)
6
6
7
- add_executable (LangulusEntityTest ${LANGULUS_ENTITY_TEST_SOURCES} )
8
-
9
- target_link_libraries (LangulusEntityTest
10
- PRIVATE LangulusEntity
11
- Catch2
12
- )
13
-
14
- add_test (
15
- NAME LangulusEntityTest
16
- COMMAND LangulusEntityTest
7
+ add_langulus_test(LangulusEntityTest
8
+ SOURCES ${LANGULUS_ENTITY_TEST_SOURCES}
9
+ LIBRARIES LangulusEntity
17
10
)
You can’t perform that action at this time.
0 commit comments